[pypy-commit] pypy default: Print stderr of the subprocess, as an attempt to gain more info from buildbot

arigo pypy.commits at gmail.com
Thu Mar 3 13:10:21 EST 2016


Author: Armin Rigo <arigo at tunes.org>
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]


More information about the pypy-commit mailing list