diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-09-21 12:05:02 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-09-21 12:05:02 (GMT) |
commit | 6dae395ed55bba164fe16183decef53ea4ff32fa (patch) | |
tree | a4f8d0d10dcfc8c3fa710e0e24904ae1995ba05e /Lib/test/eintrdata | |
parent | 900db26d3455f70cfdcba1506b314733dbd0b7e1 (diff) | |
download | cpython-6dae395ed55bba164fe16183decef53ea4ff32fa.zip cpython-6dae395ed55bba164fe16183decef53ea4ff32fa.tar.gz cpython-6dae395ed55bba164fe16183decef53ea4ff32fa.tar.bz2 |
Issue #25122: test_eintr: the FreeBSD fix will be released in FreeBSD 10.3
Diffstat (limited to 'Lib/test/eintrdata')
-rw-r--r-- | Lib/test/eintrdata/eintr_tester.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/eintrdata/eintr_tester.py b/Lib/test/eintrdata/eintr_tester.py index c2407ca..e1e0d91 100644 --- a/Lib/test/eintrdata/eintr_tester.py +++ b/Lib/test/eintrdata/eintr_tester.py @@ -301,9 +301,9 @@ class SocketEINTRTest(EINTRBaseTest): # Issue #25122: There is a race condition in the FreeBSD kernel on # handling signals in the FIFO device. Skip the test until the bug is - # fixed in the kernel. Bet that the bug will be fixed in FreeBSD 11. + # fixed in the kernel. # https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203162 - @support.requires_freebsd_version(11) + @support.requires_freebsd_version(10, 3) @unittest.skipUnless(hasattr(os, 'mkfifo'), 'needs mkfifo()') def _test_open(self, do_open_close_reader, do_open_close_writer): filename = support.TESTFN |