We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db3e990 commit b7cff30Copy full SHA for b7cff30
Lib/test/test_os/test_posix.py
@@ -415,7 +415,8 @@ def test_posix_fallocate(self):
415
if inst.errno == errno.EINVAL and sys.platform.startswith(
416
('sunos', 'freebsd', 'openbsd', 'gnukfreebsd')):
417
raise unittest.SkipTest("test may fail on ZFS filesystems")
418
- elif inst.errno == errno.EOPNOTSUPP and sys.platform.startswith("netbsd"):
+ elif inst.errno == errno.EOPNOTSUPP and sys.platform.startswith(
419
+ ("netbsd", "freebsd")):
420
raise unittest.SkipTest("test may fail on FFS filesystems")
421
else:
422
raise
0 commit comments