diff options
author | Guido van Rossum <guido@dropbox.com> | 2013-10-22 03:26:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2013-10-22 03:26:12 (GMT) |
commit | 8a0fe85fbedf003ab113fdeed1c3d8f21e49a324 (patch) | |
tree | da3148ce3137a87fe7d53c31e77d5a3a626250de /Lib | |
parent | 410d931a177af3253b7a360dc3d04f1ba57c294c (diff) | |
download | cpython-8a0fe85fbedf003ab113fdeed1c3d8f21e49a324.zip cpython-8a0fe85fbedf003ab113fdeed1c3d8f21e49a324.tar.gz cpython-8a0fe85fbedf003ab113fdeed1c3d8f21e49a324.tar.bz2 |
Avoid test_asyncio hang on AIX.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_asyncio/test_events.py | 3 |
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 10ddabb..1a4fe9c 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -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 |