diff options
author | Guido van Rossum <guido@dropbox.com> | 2013-10-19 16:10:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2013-10-19 16:10:13 (GMT) |
commit | 3743711a96e500d30e7084f74f49431547008392 (patch) | |
tree | 4601a47f7db545dcae21c6822136e266272ba5f8 | |
parent | 351f539ad8973500a86d117eaeed2028efa6427b (diff) | |
download | cpython-3743711a96e500d30e7084f74f49431547008392.zip cpython-3743711a96e500d30e7084f74f49431547008392.tar.gz cpython-3743711a96e500d30e7084f74f49431547008392.tar.bz2 |
Disable some subprocess tests that hang on AIX.
See http://bugs.python.org/issue19293
-rw-r--r-- | 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 index 4921e7f..7254e2d 100644 --- a/Lib/test/test_asyncio/test_events.py +++ b/Lib/test/test_asyncio/test_events.py @@ -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 |