diff options
| author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-18 08:13:47 (GMT) |
|---|---|---|
| committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-18 08:13:47 (GMT) |
| commit | 9a49c648caf4e8c82b890cd106be0b18eef7fb23 (patch) | |
| tree | e69f28aca83f31552862fd04623983dbbb0e558f /Lib/test/test_asyncio/test_events.py | |
| parent | 3bc3aaab1360f27a8208b98cc54a35a0a2542715 (diff) | |
| download | cpython-9a49c648caf4e8c82b890cd106be0b18eef7fb23.zip cpython-9a49c648caf4e8c82b890cd106be0b18eef7fb23.tar.gz cpython-9a49c648caf4e8c82b890cd106be0b18eef7fb23.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.py | 5 |
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() |
