mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-31904: Disable os.popen and popen test cases on VxWorks (GH-21687)
This commit is contained in:
parent
9cc8fa6ac8
commit
e1e3c2dac3
7 changed files with 58 additions and 46 deletions
|
@ -7,6 +7,9 @@ import unittest
|
|||
from test import support
|
||||
import os, sys
|
||||
|
||||
if not hasattr(os, 'popen'):
|
||||
raise unittest.SkipTest("need os.popen()")
|
||||
|
||||
# Test that command-lines get down as we expect.
|
||||
# To do this we execute:
|
||||
# python -c "import sys;print(sys.argv)" {rest_of_commandline}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue