summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-11 17:40:56 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-11 17:40:56 (GMT)
commit13b493e8a72395bd0b0ee3f72baf68aaa01704ab (patch)
treece43f4d4313bfbab2656f9e1a4b69966ef05696b /Lib/test/test_asyncio
parent540227214cf96e9a0ba9f84f37e223b4a5252bee (diff)
downloadcpython-13b493e8a72395bd0b0ee3f72baf68aaa01704ab.zip
cpython-13b493e8a72395bd0b0ee3f72baf68aaa01704ab.tar.gz
cpython-13b493e8a72395bd0b0ee3f72baf68aaa01704ab.tar.bz2
Issue #20495: Skip test_read_pty_output() of test_asyncio on FreeBSD older than
FreeBSD 8
Diffstat (limited to 'Lib/test/test_asyncio')
-rw-r--r--Lib/test/test_asyncio/test_events.py2
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
index 3f99da4..d5d667a 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -956,6 +956,8 @@ class EventLoopTestsMixin:
# 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