Avoid test_asyncio hang on AIX.

This commit is contained in:
Guido van Rossum 2013-10-21 20:26:12 -07:00
parent 410d931a17
commit 8a0fe85fbe
1 changed files with 3 additions and 0 deletions

View File

@ -1200,6 +1200,9 @@ class EventLoopTestsMixin:
@unittest.skipIf(sys.platform == 'win32',
"Don't support subprocess for Windows yet")
# Issue #19293
@unittest.skipIf(sys.platform.startswith("aix"),
'cannot be interrupted with signal on AIX')
def test_subprocess_close_client_stream(self):
proto = None
transp = None