This repository was archived by the owner on Nov 23, 2017. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -983,6 +983,9 @@ def connect():
983
983
984
984
@unittest .skipIf (sys .platform == 'win32' ,
985
985
"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' )
986
989
def test_subprocess_interactive (self ):
987
990
proto = None
988
991
transp = None
@@ -1081,6 +1084,9 @@ def connect():
1081
1084
1082
1085
@unittest .skipIf (sys .platform == 'win32' ,
1083
1086
"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' )
1084
1090
def test_subprocess_kill (self ):
1085
1091
proto = None
1086
1092
transp = None
@@ -1104,6 +1110,9 @@ def connect():
1104
1110
1105
1111
@unittest .skipIf (sys .platform == 'win32' ,
1106
1112
"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' )
1107
1116
def test_subprocess_send_signal (self ):
1108
1117
proto = None
1109
1118
transp = None
You can’t perform that action at this time.
0 commit comments