mirror of https://github.com/tc39/test262.git
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):
|
||||
if IsWindows():
|
||||
args = '"%s"' % command
|
||||
args = '%s' % command
|
||||
else:
|
||||
args = command.split(" ")
|
||||
stdout = TempFile(prefix="test262-out-")
|
||||
|
|
Loading…
Reference in New Issue