Commit 29545508 authored by Lihua Zhao's avatar Lihua Zhao Committed by Victor Stinner

bpo-31904: Port test_cmd_line to VxWorks (#12648)

subprocess.Popen doesn't support preexec on VxWorks.
parent 2c4c02f8
......@@ -369,6 +369,8 @@ class CmdLineTest(unittest.TestCase):
# Issue #7111: Python should work without standard streams
@unittest.skipIf(os.name != 'posix', "test needs POSIX semantics")
@unittest.skipIf(sys.platform == "vxworks",
"test needs preexec support in subprocess.Popen")
def _test_no_stdio(self, streams):
code = """if 1:
import os, sys
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment