run-tests.py: don't use console for stdin when running in debug mode
authorMads Kiilerich <mads@kiilerich.com>
Mon, 07 Jan 2013 02:00:43 +0100
changeset 18230 f5842787a958
parent 18229 77d06793a20d
child 18231 c0c943ef4e55
run-tests.py: don't use console for stdin when running in debug mode Tests would wait for input instead of using non-interactive mode.
tests/run-tests.py
--- a/tests/run-tests.py	Mon Jan 07 02:00:43 2013 +0100
+++ b/tests/run-tests.py	Mon Jan 07 02:00:43 2013 +0100
@@ -749,7 +749,8 @@
     Return a tuple (exitcode, output).  output is None in debug mode."""
     # TODO: Use subprocess.Popen if we're running on Python 2.4
     if options.debug:
-        proc = subprocess.Popen(cmd, shell=True, cwd=wd)
+        proc = subprocess.Popen(cmd, shell=True, cwd=wd, stdin=subprocess.PIPE)
+        proc.stdin.close()
         ret = proc.wait()
         return (ret, None)