Skip to content
This repository was archived by the owner on Nov 23, 2017. It is now read-only.

Commit 8fc5b6d

Browse files
committed
Temporarily skip some subprocess tests that fail on AIX.
1 parent 63fd6c5 commit 8fc5b6d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

tests/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)