Reviewers: Yang,

Message:
Original CL by Bert Belder <[email protected]>
http://codereview.chromium.org/9691029/

Landing.

Description:
Fix test.py for Python 2.7.

BUG=
TEST=


Please review this at http://codereview.chromium.org/9695053/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M tools/test.py


Index: tools/test.py
diff --git a/tools/test.py b/tools/test.py
index 951afcc85da02791a0d95cbf636858a98257442f..6645351ac4ca7d115670c8f863eafbf1d2a26612 100755
--- a/tools/test.py
+++ b/tools/test.py
@@ -472,7 +472,7 @@ def RunProcess(context, timeout, args, **rest):
   popen_args = args
   prev_error_mode = SEM_INVALID_VALUE
   if utils.IsWindows():
-    popen_args = '"' + subprocess.list2cmdline(args) + '"'
+    popen_args = subprocess.list2cmdline(args)
     if context.suppress_dialogs:
# Try to change the error mode to avoid dialogs on fatal errors. Don't # touch any existing error mode flags by merging the existing error mode.


--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev

Reply via email to