Skip to content

Commit 21bc61d

Browse files
committed
reduce debug output in test runner again
1 parent 606d610 commit 21bc61d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ def build(self, src, dirname, filename, output_processor=None, main_file=None, a
234234
['-I', dirname, '-I', os.path.join(dirname, 'include')] + \
235235
map(lambda include: '-I' + include, includes) + \
236236
['-c', f, '-o', f + '.o']
237-
output = Popen(args, stdout=PIPE).communicate()[0]
237+
output = Popen(args, stdout=PIPE, stderr=self.stderr_redirect).communicate()[0]
238238
assert os.path.exists(f + '.o'), 'Source compilation error: ' + output
239239

240240
# Link all files

0 commit comments

Comments
 (0)