mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-23 16:26:29 +00:00
remove skipping the noatime tests on GNU/Hurd, fixes #2710
I recently installed GNU/Hurd 2017 and found the atime test works now.
This commit is contained in:
parent
109363236a
commit
49411d1c6c
1 changed files with 0 additions and 3 deletions
|
@ -453,9 +453,6 @@ def test_symlink_extract(self):
|
|||
self.cmd('extract', self.repository_location + '::test')
|
||||
assert os.readlink('input/link1') == 'somewhere'
|
||||
|
||||
# Search for O_NOATIME there: https://www.gnu.org/software/hurd/contributing.html - we just
|
||||
# skip the test on Hurd, it is not critical anyway, just testing a performance optimization.
|
||||
@pytest.mark.skipif(sys.platform == 'gnu0', reason="O_NOATIME is strangely broken on GNU Hurd")
|
||||
@pytest.mark.skipif(not is_utime_fully_supported(), reason='cannot properly setup and execute test without utime')
|
||||
def test_atime(self):
|
||||
def has_noatime(some_file):
|
||||
|
|
Loading…
Reference in a new issue