Browse Source

Fix test runner bug on windows

v0.7.4-release
Bert Belder 14 years ago
committed by Ryan Dahl
parent
commit
25ce5016f4
  1. 1
      tools/test.py

1
tools/test.py

@ -455,7 +455,6 @@ def RunProcess(context, timeout, args, **rest):
popen_args = args popen_args = args
prev_error_mode = SEM_INVALID_VALUE; prev_error_mode = SEM_INVALID_VALUE;
if utils.IsWindows(): if utils.IsWindows():
popen_args = '"' + subprocess.list2cmdline(args) + '"'
if context.suppress_dialogs: if context.suppress_dialogs:
# Try to change the error mode to avoid dialogs on fatal errors. Don't # 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. # touch any existing error mode flags by merging the existing error mode.

Loading…
Cancel
Save