summaryrefslogtreecommitdiff
path: root/tools
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
commit1cb9ed439f3fdb664513fdbe3b24ea7936ffadee (patch)
tree81c0a413887ab91a40644d89f47fb4175251dc65 /tools
parent5167f080fda43c07ed909fcef82a2e67bf3ceab0 (diff)
downloadqtdeclarative-testsuites-1cb9ed439f3fdb664513fdbe3b24ea7936ffadee.tar.gz
Bug 1457: fix for Windows to remove quotes in test262.py
Diffstat (limited to 'tools')
-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-")