[Python-checkins] cpython: Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older than

victor.stinner python-checkins at python.org
Tue Feb 11 18:41:34 CET 2014


http://hg.python.org/cpython/rev/2ba583191550
changeset:   89157:2ba583191550
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Tue Feb 11 18:40:56 2014 +0100
summary:
  Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older than
FreeBSD 8

files:
  Lib/test/test_asyncio/test_events.py |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -956,6 +956,8 @@
     # select, poll and kqueue don't support character devices (PTY) on Mac OS X
     # older than 10.6 (Snow Leopard)
     @support.requires_mac_ver(10, 6)
+    # Issue #20495: The test hangs on FreeBSD 7.2 but pass on FreeBSD 9
+    @support.requires_freebsd_version(8)
     def test_read_pty_output(self):
         proto = None
 

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


More information about the Python-checkins mailing list