From: Victor Stinner Date: Mon, 21 Sep 2015 12:05:02 +0000 (+0200) Subject: Issue #25122: test_eintr: the FreeBSD fix will be released in FreeBSD 10.3 X-Git-Tag: v3.5.1rc1~311 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6dae395ed55bba164fe16183decef53ea4ff32fa;p=thirdparty%2FPython%2Fcpython.git Issue #25122: test_eintr: the FreeBSD fix will be released in FreeBSD 10.3 --- diff --git a/Lib/test/eintrdata/eintr_tester.py b/Lib/test/eintrdata/eintr_tester.py index c2407ca354ba..e1e0d91006f7 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