Explorar o código

test_atime: exclude GNU Hurd from this test

It has O_NOATIME, opening doesn't fail with EPERM, but it still updates
the atime of the file.
Marian Beermann %!s(int64=9) %!d(string=hai) anos
pai
achega
c07d91e9ca
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      borg/testsuite/archiver.py

+ 1 - 1
borg/testsuite/archiver.py

@@ -370,7 +370,7 @@ class ArchiverTestCase(ArchiverTestCaseBase):
         except PermissionError:
             have_noatime = False
         else:
-            have_noatime = flags_noatime != flags_normal
+            have_noatime = (flags_noatime != flags_normal and sys.platform != 'gnu0')
         os.utime('input/file1', (atime, mtime))
         self.cmd('init', self.repository_location)
         self.cmd('create', self.repository_location + '::test', 'input')