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. |