]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Disable some subprocess tests that hang on AIX.
authorGuido van Rossum <guido@dropbox.com>
Sat, 19 Oct 2013 16:10:13 +0000 (09:10 -0700)
committerGuido van Rossum <guido@dropbox.com>
Sat, 19 Oct 2013 16:10:13 +0000 (09:10 -0700)
See http://bugs.python.org/issue19293

Lib/test/test_asyncio/test_events.py

index 4921e7fa665161fb608ac094c2bdc0d4daf1e2bc..7254e2dc5ab686a24283b6779449aca72671fd1e 100644 (file)
@@ -983,6 +983,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_interactive(self):
         proto = None
         transp = None
@@ -1081,6 +1084,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_kill(self):
         proto = None
         transp = None
@@ -1104,6 +1110,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_send_signal(self):
         proto = None
         transp = None