Bug 1457: fix for Windows to remove quotes in test262.py

This commit is contained in:
Dan Schaffer 2013-05-10 16:16:51 -04:00
parent 5167f080fd
commit 1cb9ed439f

View File

@ -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-")