summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Schaffer <dschaffe@adobe.com>2013-05-10 16:16:51 -0400
committerDan Schaffer <dschaffe@adobe.com>2013-05-10 16:16:51 -0400
commitdabe32dd2cf730958920fcbcccf600c33a0468c8 (patch)
tree81c0a413887ab91a40644d89f47fb4175251dc65
parent5f083009cbd24eea330733ae7fcc870e31b5fa38 (diff)
downloadtest262-dabe32dd2cf730958920fcbcccf600c33a0468c8.tar.gz
Bug 1457: fix for Windows to remove quotes in test262.py
-rwxr-xr-xtools/packaging/test262.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/packaging/test262.py b/tools/packaging/test262.py
index 496f4cdfe..7df05fa88 100755
--- a/tools/packaging/test262.py
+++ b/tools/packaging/test262.py
@@ -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-")