cpython: 41a841fac7fb (original) (raw)
Mercurial > cpython
changeset 86474:41a841fac7fb
Disable some subprocess tests that hang on AIX. See http://bugs.python.org/issue19293
Guido van Rossum guido@dropbox.com | |
---|---|
date | Sat, 19 Oct 2013 09:10:13 -0700 |
parents | 88fac1574049 |
children | b8c5964cadc1 |
files | Lib/test/test_asyncio/test_events.py |
diffstat | 1 files changed, 9 insertions(+), 0 deletions(-)[+] [-] Lib/test/test_asyncio/test_events.py 9 |
line wrap: on
line diff
--- 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"),
def test_subprocess_interactive(self): proto = None transp = None'cannot be interrupted with signal on AIX')[](#l1.9)
@@ -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"),
def test_subprocess_kill(self): proto = None transp = None'cannot be interrupted with signal on AIX')[](#l1.19)
@@ -1104,6 +1110,9 @@ class EventLoopTestsMixin: @unittest.skipIf(sys.platform == 'win32', "Don't support subprocess for Windows yet")