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

Commit f6f3d77

Browse files
author
Guido van Rossum
committed
Skip test_subprocess_close_client_stream on AIX (to avoid hang).
1 parent fe0b17a commit f6f3d77

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_events.py

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

12011201
@unittest.skipIf(sys.platform == 'win32',
12021202
"Don't support subprocess for Windows yet")
1203+
# Issue #19293
1204+
@unittest.skipIf(sys.platform.startswith("aix"),
1205+
'cannot be interrupted with signal on AIX')
12031206
def test_subprocess_close_client_stream(self):
12041207
proto = None
12051208
transp = None

0 commit comments

Comments
 (0)