[Python-checkins] cpython: Disable some subprocess tests that hang on AIX.

guido.van.rossum python-checkins at python.org
Sat Oct 19 18:10:47 CEST 2013


http://hg.python.org/cpython/rev/41a841fac7fb
changeset:   86474:41a841fac7fb
user:        Guido van Rossum <guido at dropbox.com>
date:        Sat Oct 19 09:10:13 2013 -0700
summary:
  Disable some subprocess tests that hang on AIX.

See http://bugs.python.org/issue19293

files:
  Lib/test/test_asyncio/test_events.py |  9 +++++++++
  1 files changed, 9 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
@@ -983,6 +983,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_interactive(self):
         proto = None
         transp = None
@@ -1081,6 +1084,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_kill(self):
         proto = None
         transp = None
@@ -1104,6 +1110,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_send_signal(self):
         proto = None
         transp = None

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


More information about the Python-checkins mailing list