From 2a193a818a3a1e7ea8b184a068f39277c3468598 Mon Sep 17 00:00:00 2001 From: Jesus Cea Date: Mon, 25 Jun 2012 13:45:38 +0200 Subject: Skip test in freebsd entirely - Kernel bug in freebsd7/8/9 - #10142: Support for SEEK_HOLE/SEEK_DATA --- Lib/test/test_posix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index c4f911d..776439f 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -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): -- cgit v0.12