From 8a0fe85fbedf003ab113fdeed1c3d8f21e49a324 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 21 Oct 2013 20:26:12 -0700 Subject: [PATCH] Avoid test_asyncio hang on AIX. --- Lib/test/test_asyncio/test_events.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 10ddabb8ed4..1a4fe9cfac5 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