Merge pull request #3691 from ThomasWaldmann/test-diff-deleted-empty

add test for issue #3688
This commit is contained in:
TW 2018-03-17 19:20:07 +01:00 committed by GitHub
commit 788783b91a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -3407,6 +3407,7 @@ class DiffArchiverTestCase(ArchiverTestCaseBase):
# Setup files for the second snapshot
self.create_regular_file('file_added', size=2048)
self.create_regular_file('file_empty_added', size=0)
os.unlink('input/file_removed')
os.unlink('input/file_removed2')
os.unlink('input/file_replaced')
@ -3481,6 +3482,9 @@ class DiffArchiverTestCase(ArchiverTestCaseBase):
if are_hardlinks_supported():
assert 'added 2.05 kB input/hardlink_added' in output
# check if a diff between non-existent and empty new file is found
assert 'added 0 B input/file_empty_added' in output
# The inode has two links and both of them are deleted. They should
# appear as two deleted files.
assert 'removed 256 B input/file_removed' in output