[Python-checkins] cpython (3.5): Issue #25122: test_eintr: the FreeBSD fix will be released in FreeBSD 10.3

victor.stinner python-checkins at python.org
Mon Sep 21 14:05:24 CEST 2015


https://hg.python.org/cpython/rev/3184c43627f5
changeset:   98131:3184c43627f5
branch:      3.5
parent:      98129:a7baccf0b1c2
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Sep 21 14:05:02 2015 +0200
summary:
  Issue #25122: test_eintr: the FreeBSD fix will be released in FreeBSD 10.3

files:
  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
--- a/Lib/test/eintrdata/eintr_tester.py
+++ b/Lib/test/eintrdata/eintr_tester.py
@@ -301,9 +301,9 @@
 
     # 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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list