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
1 changed files with 1 additions and 1 deletions

View File

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