mirror of
https://github.com/python/cpython.git
synced 2025-09-27 18:59:43 +00:00
Disable some subprocess tests that hang on AIX.
See http://bugs.python.org/issue19293
This commit is contained in:
parent
351f539ad8
commit
3743711a96
1 changed files with 9 additions and 0 deletions
|
@ -983,6 +983,9 @@ class EventLoopTestsMixin:
|
||||||
|
|
||||||
@unittest.skipIf(sys.platform == 'win32',
|
@unittest.skipIf(sys.platform == 'win32',
|
||||||
"Don't support subprocess for Windows yet")
|
"Don't support subprocess for Windows yet")
|
||||||
|
# Issue #19293
|
||||||
|
@unittest.skipIf(sys.platform.startswith("aix"),
|
||||||
|
'cannot be interrupted with signal on AIX')
|
||||||
def test_subprocess_interactive(self):
|
def test_subprocess_interactive(self):
|
||||||
proto = None
|
proto = None
|
||||||
transp = None
|
transp = None
|
||||||
|
@ -1081,6 +1084,9 @@ class EventLoopTestsMixin:
|
||||||
|
|
||||||
@unittest.skipIf(sys.platform == 'win32',
|
@unittest.skipIf(sys.platform == 'win32',
|
||||||
"Don't support subprocess for Windows yet")
|
"Don't support subprocess for Windows yet")
|
||||||
|
# Issue #19293
|
||||||
|
@unittest.skipIf(sys.platform.startswith("aix"),
|
||||||
|
'cannot be interrupted with signal on AIX')
|
||||||
def test_subprocess_kill(self):
|
def test_subprocess_kill(self):
|
||||||
proto = None
|
proto = None
|
||||||
transp = None
|
transp = None
|
||||||
|
@ -1104,6 +1110,9 @@ class EventLoopTestsMixin:
|
||||||
|
|
||||||
@unittest.skipIf(sys.platform == 'win32',
|
@unittest.skipIf(sys.platform == 'win32',
|
||||||
"Don't support subprocess for Windows yet")
|
"Don't support subprocess for Windows yet")
|
||||||
|
# Issue #19293
|
||||||
|
@unittest.skipIf(sys.platform.startswith("aix"),
|
||||||
|
'cannot be interrupted with signal on AIX')
|
||||||
def test_subprocess_send_signal(self):
|
def test_subprocess_send_signal(self):
|
||||||
proto = None
|
proto = None
|
||||||
transp = None
|
transp = None
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue