tests/run-tests.py
branchstable
changeset 1203 67fb241fb0b1
parent 1196 c0daf79e5680
child 1204 469ccfe7aa92
--- a/tests/run-tests.py	Wed Jan 16 14:26:19 2013 +0100
+++ b/tests/run-tests.py	Fri Jan 18 01:16:16 2013 +0100
@@ -751,8 +751,7 @@
     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, stdin=subprocess.PIPE)
-        proc.stdin.close()
+        proc = subprocess.Popen(cmd, shell=True, cwd=wd)
         ret = proc.wait()
         return (ret, None)