diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2018-01-22 18:32:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 18:32:50 +0100 |
commit | 13ff24582c99dfb439b1af7295b401415e7eb05b (patch) | |
tree | 6966d9e1247134dfee9db73b6b5a215bfa88baf4 /Lib/test/test_posix.py | |
parent | b0a7a037b8fde56b62f886d5188bced7776777b4 (diff) | |
download | cpython-git-13ff24582c99dfb439b1af7295b401415e7eb05b.tar.gz |
bpo-32593: Drop FreeBSD 9 and older support (#5232)
Drop support of FreeBSD 9 and older.
Diffstat (limited to 'Lib/test/test_posix.py')
-rw-r--r-- | Lib/test/test_posix.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index 44b8d6a7ad..6c50406317 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -559,6 +559,7 @@ class PosixTester(unittest.TestCase): self.assertRaises(TypeError, posix.minor) self.assertRaises((ValueError, OverflowError), posix.minor, -1) + # FIXME: reenable these tests on FreeBSD with the kernel fix if sys.platform.startswith('freebsd') and dev >= 0x1_0000_0000: self.skipTest("bpo-31044: on FreeBSD CURRENT, minor() truncates " "64-bit dev to 32-bit") |