Bug 936681 - Correctly print stderr for jit-test failures (r=terrence)

This commit is contained in:
Bill McCloskey 2013-11-08 16:05:33 -08:00
Родитель ac66795d80
Коммит 4fea685b63
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -390,9 +390,9 @@ def print_tinderbox(ok, res):
print("INFO exit-status : {}".format(res.rc))
print("INFO timed-out : {}".format(res.timed_out))
for line in res.out.split('\n'):
print("INFO stdout > " + line)
for line in res.out.split('\n'):
print("INFO stderr 2> " + line)
print("INFO stdout > " + line.strip())
for line in res.err.split('\n'):
print("INFO stderr 2> " + line.strip())
def wrap_parallel_run_test(test, prefix, resultQueue, options):
# Ignore SIGINT in the child