From: Guido van Rossum Date: Tue, 22 Oct 2013 03:26:12 +0000 (-0700) Subject: Avoid test_asyncio hang on AIX. X-Git-Tag: v3.4.0b1~571^2~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8a0fe85fbedf003ab113fdeed1c3d8f21e49a324;p=thirdparty%2FPython%2Fcpython.git Avoid test_asyncio hang on AIX. --- diff --git a/Lib/test/test_asyncio/test_events.py b/Lib/test/test_asyncio/test_events.py index 10ddabb8ed43..1a4fe9cfac58 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