Commit 7db67b47 authored by Jesus Cea's avatar Jesus Cea

Skip test in freebsd entirely - Kernel bug in freebsd7/8/9 - #10142: Support...

Skip test in freebsd entirely - Kernel bug in freebsd7/8/9 - #10142: Support for SEEK_HOLE/SEEK_DATA
parent 689e57a7
......@@ -1017,7 +1017,7 @@ class PosixTester(unittest.TestCase):
@unittest.skipUnless(hasattr(os, 'SEEK_HOLE'),
"test needs an OS that reports file holes")
@unittest.skipIf(sys.platform == 'freebsd9',
@unittest.skipIf(sys.platform in ('freebsd7', 'freebsd8', 'freebsd9'),
"Skip test because known kernel bug - " \
"http://lists.freebsd.org/pipermail/freebsd-amd64/2012-January/014332.html")
def test_fs_holes(self):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment