[Python-checkins] cpython: Avoid test_asyncio hang on AIX.

guido.van.rossum python-checkins at python.org
Tue Oct 22 05:26:21 CEST 2013


http://hg.python.org/cpython/rev/df2b2b1f1289
changeset:   86556:df2b2b1f1289
user:        Guido van Rossum <guido at dropbox.com>
date:        Mon Oct 21 20:26:12 2013 -0700
summary:
  Avoid test_asyncio hang on AIX.

files:
  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
--- a/Lib/test/test_asyncio/test_events.py
+++ b/Lib/test/test_asyncio/test_events.py
@@ -1200,6 +1200,9 @@
 
     @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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list