mirror of
https://github.com/tc39/test262.git
synced 2025-07-23 14:04:51 +02:00
Bug 1457: fix for Windows to remove quotes in test262.py
This commit is contained in:
parent
5167f080fd
commit
1cb9ed439f
@ -229,7 +229,7 @@ class TestCase(object):
|
|||||||
|
|
||||||
def Execute(self, command):
|
def Execute(self, command):
|
||||||
if IsWindows():
|
if IsWindows():
|
||||||
args = '"%s"' % command
|
args = '%s' % command
|
||||||
else:
|
else:
|
||||||
args = command.split(" ")
|
args = command.split(" ")
|
||||||
stdout = TempFile(prefix="test262-out-")
|
stdout = TempFile(prefix="test262-out-")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user