Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3743711

Browse files
author
Guido van Rossum
committed
Disable some subprocess tests that hang on AIX.
See http://bugs.python.org/issue19293
1 parent 351f539 commit 3743711

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Lib/test/test_asyncio/test_events.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -983,6 +983,9 @@ def connect():
983983

984984
@unittest.skipIf(sys.platform == 'win32',
985985
"Don't support subprocess for Windows yet")
986+
# Issue #19293
987+
@unittest.skipIf(sys.platform.startswith("aix"),
988+
'cannot be interrupted with signal on AIX')
986989
def test_subprocess_interactive(self):
987990
proto = None
988991
transp = None
@@ -1081,6 +1084,9 @@ def connect():
10811084

10821085
@unittest.skipIf(sys.platform == 'win32',
10831086
"Don't support subprocess for Windows yet")
1087+
# Issue #19293
1088+
@unittest.skipIf(sys.platform.startswith("aix"),
1089+
'cannot be interrupted with signal on AIX')
10841090
def test_subprocess_kill(self):
10851091
proto = None
10861092
transp = None
@@ -1104,6 +1110,9 @@ def connect():
11041110

11051111
@unittest.skipIf(sys.platform == 'win32',
11061112
"Don't support subprocess for Windows yet")
1113+
# Issue #19293
1114+
@unittest.skipIf(sys.platform.startswith("aix"),
1115+
'cannot be interrupted with signal on AIX')
11071116
def test_subprocess_send_signal(self):
11081117
proto = None
11091118
transp = None

0 commit comments

Comments
 (0)