Skip to content

Commit 74a367d

Browse files
committed
Unsilence several tests that no longer hang on AIX, and silence a new AIX hang.
1 parent eaf48c0 commit 74a367d

File tree

1 file changed

+3
-12
lines changed

1 file changed

+3
-12
lines changed

tests/test_events.py

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -887,6 +887,9 @@ def connect():
887887

888888
@unittest.skipUnless(sys.platform != 'win32',
889889
"Don't support pipes for Windows")
890+
# Issue #19293
891+
@unittest.skipIf(sys.platform.startswith("aix"),
892+
'cannot be interrupted with signal on AIX')
890893
def test_write_pipe_disconnect_on_close(self):
891894
proto = None
892895
transport = None
@@ -986,9 +989,6 @@ def connect():
986989

987990
@unittest.skipIf(sys.platform == 'win32',
988991
"Don't support subprocess for Windows yet")
989-
# Issue #19293
990-
@unittest.skipIf(sys.platform.startswith("aix"),
991-
'cannot be interrupted with signal on AIX')
992992
def test_subprocess_interactive(self):
993993
proto = None
994994
transp = None
@@ -1087,9 +1087,6 @@ def connect():
10871087

10881088
@unittest.skipIf(sys.platform == 'win32',
10891089
"Don't support subprocess for Windows yet")
1090-
# Issue #19293
1091-
@unittest.skipIf(sys.platform.startswith("aix"),
1092-
'cannot be interrupted with signal on AIX')
10931090
def test_subprocess_kill(self):
10941091
proto = None
10951092
transp = None
@@ -1113,9 +1110,6 @@ def connect():
11131110

11141111
@unittest.skipIf(sys.platform == 'win32',
11151112
"Don't support subprocess for Windows yet")
1116-
# Issue #19293
1117-
@unittest.skipIf(sys.platform.startswith("aix"),
1118-
'cannot be interrupted with signal on AIX')
11191113
def test_subprocess_send_signal(self):
11201114
proto = None
11211115
transp = None
@@ -1200,9 +1194,6 @@ def connect():
12001194

12011195
@unittest.skipIf(sys.platform == 'win32',
12021196
"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')
12061197
def test_subprocess_close_client_stream(self):
12071198
proto = None
12081199
transp = None

0 commit comments

Comments
 (0)