mirror of
https://github.com/borgbackup/borg.git
synced 2025-01-19 05:49:14 +00:00
Resolved mode bug and added sleep clause for darwin systems. Fixes #7470
This commit is contained in:
parent
de2f894bcc
commit
ea08161fe8
1 changed files with 5 additions and 1 deletions
|
@ -4523,12 +4523,16 @@ def test_time_diffs(self):
|
|||
if is_win32:
|
||||
# Sleeping for 15s because Windows doesn't refresh ctime if file is deleted and recreated within 15 seconds.
|
||||
time.sleep(15)
|
||||
elif is_darwin:
|
||||
time.sleep(1) # HFS has a 1s timestamp granularity
|
||||
self.create_regular_file("test_file", size=15)
|
||||
self.cmd('create', self.repository_location + '::archive2', 'input')
|
||||
output = self.cmd("diff", self.repository_location + "::archive1", "archive2")
|
||||
self.assert_in("mtime", output)
|
||||
self.assert_in("ctime", output) # Should show up on windows as well since it is a new file.
|
||||
os.chmod("input/test_file", 777)
|
||||
if is_darwin:
|
||||
time.sleep(1) # HFS has a 1s timestamp granularity
|
||||
os.chmod("input/test_file", 0o777)
|
||||
self.cmd('create', self.repository_location + '::archive3', 'input')
|
||||
output = self.cmd("diff", self.repository_location + "::archive2", "archive3")
|
||||
self.assert_not_in("mtime", output)
|
||||
|
|
Loading…
Reference in a new issue