Author: Armin Rigo <[email protected]>
Branch:
Changeset: r82681:084d80e5669d
Date: 2016-03-03 18:18 +0100
http://bitbucket.org/pypy/pypy/changeset/084d80e5669d/
Log: Print stderr of the subprocess, as an attempt to gain more info from
buildbot
diff --git a/pypy/module/pypyjit/test_pypy_c/test_00_model.py
b/pypy/module/pypyjit/test_pypy_c/test_00_model.py
--- a/pypy/module/pypyjit/test_pypy_c/test_00_model.py
+++ b/pypy/module/pypyjit/test_pypy_c/test_00_model.py
@@ -68,9 +68,12 @@
pipe.returncode,))
if stderr.startswith('SKIP:'):
py.test.skip(stderr)
- if stderr.startswith('debug_alloc.h:'): # lldebug builds
- stderr = ''
+ #if stderr.startswith('debug_alloc.h:'): # lldebug builds
+ # stderr = ''
#assert not stderr
+ if stderr:
+ print '*** stderr of the subprocess: ***'
+ print stderr
#
if discard_stdout_before_last_line:
stdout = stdout.splitlines(True)[-1]
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit