File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments