mirror of https://github.com/python/cpython
Get popen test to work even if python is not in the path
This commit is contained in:
parent
6f18a3c124
commit
d69030db4f
|
@ -15,7 +15,7 @@ from os import popen
|
|||
# This results in Python being spawned and printing the sys.argv list.
|
||||
# We can then eval() the result of this, and see what each argv was.
|
||||
def _do_test_commandline(cmdline, expected):
|
||||
cmd = 'python -c "import sys;print sys.argv" %s' % (cmdline,)
|
||||
cmd = '%s -c "import sys;print sys.argv" %s' % (sys.executable, cmdline)
|
||||
data = popen(cmd).read()
|
||||
got = eval(data)[1:] # strip off argv[0]
|
||||
if got != expected:
|
||||
|
|
Loading…
Reference in New Issue