[Python-checkins] cpython: Unsilence several asyncio AIX tests that no longer hang, and silence a new hang.

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


http://hg.python.org/cpython/rev/f33cc4a175a4
changeset:   86559:f33cc4a175a4
user:        Guido van Rossum <guido at dropbox.com>
date:        Mon Oct 21 20:57:25 2013 -0700
summary:
  Unsilence several asyncio AIX tests that no longer hang, and silence a new hang.

files:
  Lib/test/test_asyncio/test_events.py |  15 +++------------
  1 files changed, 3 insertions(+), 12 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
@@ -887,6 +887,9 @@
 
     @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 @@
 
     @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 @@
 
     @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 @@
 
     @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 @@
 
     @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