summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-18 00:30:03 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-18 00:30:03 (GMT)
commit5afffeab73948617b6e0c0bd20c8ff5119a52e6d (patch)
treede3180e765c310cd69f44117ccc43c985e59fd9a /Lib/test/test_asyncio/test_events.py
parent740eedb8268788fb834ec5e1e63b4268e8c9e815 (diff)
downloadcpython-5afffeab73948617b6e0c0bd20c8ff5119a52e6d.zip
cpython-5afffeab73948617b6e0c0bd20c8ff5119a52e6d.tar.gz
cpython-5afffeab73948617b6e0c0bd20c8ff5119a52e6d.tar.bz2
Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() on
OpenBSD older than 5.5
Diffstat (limited to 'Lib/test/test_asyncio/test_events.py')
-rw-r--r--Lib/test/test_asyncio/test_events.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index 3bb8dd8..c2c0515 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1622,6 +1622,9 @@ else:
# kqueue doesn't support character devices (PTY) on Mac OS X older
# than 10.9 (Maverick)
@support.requires_mac_ver(10, 9)
+ # Issue #20667: KqueueEventLoopTests.test_read_pty_output()
+ # hangs on OpenBSD 5.4
+ @support.requires_openbsd_version(5, 5)
def test_read_pty_output(self):
super().test_read_pty_output()