]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Unsilence several asyncio AIX tests that no longer hang, and silence a new hang.
authorGuido van Rossum <guido@dropbox.com>
Tue, 22 Oct 2013 03:57:25 +0000 (20:57 -0700)
committerGuido van Rossum <guido@dropbox.com>
Tue, 22 Oct 2013 03:57:25 +0000 (20:57 -0700)
Lib/test/test_asyncio/test_events.py

index 1a4fe9cfac58f9b8b9b0da252a599e186a37534d..3924a2f996208b5e1aff4a2d059cbb5154d6b17d 100644 (file)
@@ -887,6 +887,9 @@ class EventLoopTestsMixin:
 
     @unittest.skipUnless(sys.platform != 'win32',
                          "Don't support pipes for Windows")
+    # Issue #19293
+    @unittest.skipIf(sys.platform.startswith("aix"),
+                     'cannot be interrupted with signal on AIX')
     def test_write_pipe_disconnect_on_close(self):
         proto = None
         transport = None
@@ -986,9 +989,6 @@ 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
@@ -1087,9 +1087,6 @@ 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
@@ -1113,9 +1110,6 @@ 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
@@ -1200,9 +1194,6 @@ 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