summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_posix.py
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-06-25 11:45:38 (GMT)
committerJesus Cea <jcea@jcea.es>2012-06-25 11:45:38 (GMT)
commit2a193a818a3a1e7ea8b184a068f39277c3468598 (patch)
treea8f7abd8fb3a8a7f9a8afccc3ec46f25c3aeb981 /Lib/test/test_posix.py
parentfdaea06d3c0a020c226f26114aad4e58688f0ab3 (diff)
downloadcpython-2a193a818a3a1e7ea8b184a068f39277c3468598.zip
cpython-2a193a818a3a1e7ea8b184a068f39277c3468598.tar.gz
cpython-2a193a818a3a1e7ea8b184a068f39277c3468598.tar.bz2
Skip test in freebsd entirely - Kernel bug in freebsd7/8/9 - #10142: Support for SEEK_HOLE/SEEK_DATA
Diffstat (limited to 'Lib/test/test_posix.py')
-rw-r--r--Lib/test/test_posix.py2
1 files changed, 1 insertions, 1 deletions
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):