mirror of
https://github.com/tc39/test262.git
synced 2025-04-08 19:35:28 +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):
|
||||
if IsWindows():
|
||||
args = '"%s"' % command
|
||||
args = '%s' % command
|
||||
else:
|
||||
args = command.split(" ")
|
||||
stdout = TempFile(prefix="test262-out-")
|
||||
|
Loading…
x
Reference in New Issue
Block a user