aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAlon Zakai <alonzakai@gmail.com>2013-06-27 12:54:13 -0700
committerAlon Zakai <alonzakai@gmail.com>2013-06-27 12:54:13 -0700
commit21bc61d8076a284cad84c8abc4bb90172b3317e9 (patch)
tree96e07b777fe20b3bcac5c37897e5aa33059380f6 /tests
parent606d6105730078817f12fc90c5e5b08b2b75583b (diff)
reduce debug output in test runner again
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runner.py b/tests/runner.py
index a74b2905..a6456055 100755
--- a/tests/runner.py
+++ b/tests/runner.py
@@ -234,7 +234,7 @@ process(sys.argv[1])
['-I', dirname, '-I', os.path.join(dirname, 'include')] + \
map(lambda include: '-I' + include, includes) + \
['-c', f, '-o', f + '.o']
- output = Popen(args, stdout=PIPE).communicate()[0]
+ output = Popen(args, stdout=PIPE, stderr=self.stderr_redirect).communicate()[0]
assert os.path.exists(f + '.o'), 'Source compilation error: ' + output
# Link all files