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.
This commit is contained in:
Marian Beermann 2016-07-12 14:42:00 +02:00
parent 0e0f487b95
commit c07d91e9ca
1 changed files with 1 additions and 1 deletions

View File

@ -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')