Revision: 11033
Author:   [email protected]
Date:     Tue Mar 13 10:19:24 2012
Log:      Fix test.py for Python 2.7.

BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/9695053
Patch from Bert Belder <[email protected]>.
http://code.google.com/p/v8/source/detail?r=11033

Modified:
 /branches/bleeding_edge/tools/test.py

=======================================
--- /branches/bleeding_edge/tools/test.py       Wed Mar  7 04:51:31 2012
+++ /branches/bleeding_edge/tools/test.py       Tue Mar 13 10:19:24 2012
@@ -472,7 +472,7 @@
   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