summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-18 08:13:47 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-18 08:13:47 (GMT)
commit9141bff1446e6b73b2fb71a30c9c3446d7b90917 (patch)
treed2119561b69da32b0dba1ad42a58f870298c5398 /Lib/test/test_asyncio/test_events.py
parent79bf89986c6610b30b8c1dc3e4cc5195dc43c8eb (diff)
downloadcpython-9141bff1446e6b73b2fb71a30c9c3446d7b90917.zip
cpython-9141bff1446e6b73b2fb71a30c9c3446d7b90917.tar.gz
cpython-9141bff1446e6b73b2fb71a30c9c3446d7b90917.tar.bz2
Issue #20667: KqueueEventLoopTests.test_read_pty_output() hangs also on OpenBSD 5.5.
Diffstat (limited to 'Lib/test/test_asyncio/test_events.py')
-rw-r--r--Lib/test/test_asyncio/test_events.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py
index c2c0515..8c32a6e 100644
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1623,8 +1623,9 @@ else:
# 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)
+ # hangs on OpenBSD 5.5
+ @unittest.skipIf(sys.platform.startswith('openbsd'),
+ 'test hangs on OpenBSD')
def test_read_pty_output(self):
super().test_read_pty_output()