mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #20667: test_asyncio: Skip KqueueEventLoopTests.test_read_pty_output() on
OpenBSD older than 5.5
This commit is contained in:
parent
740eedb826
commit
5afffeab73
2 changed files with 13 additions and 0 deletions
|
@ -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()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue