From 1cb9ed439f3fdb664513fdbe3b24ea7936ffadee Mon Sep 17 00:00:00 2001
From: Dan Schaffer <dschaffe@adobe.com>
Date: Fri, 10 May 2013 16:16:51 -0400
Subject: [PATCH] Bug 1457: fix for Windows to remove quotes in test262.py

---
 tools/packaging/test262.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/packaging/test262.py b/tools/packaging/test262.py
index 496f4cdfe7..7df05fa888 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-")
-- 
GitLab