зеркало из https://github.com/mozilla/gecko-dev.git
Bug 936681 - Correctly print stderr for jit-test failures (r=terrence)
This commit is contained in:
Родитель
ac66795d80
Коммит
4fea685b63
|
@ -390,9 +390,9 @@ def print_tinderbox(ok, res):
|
||||||
print("INFO exit-status : {}".format(res.rc))
|
print("INFO exit-status : {}".format(res.rc))
|
||||||
print("INFO timed-out : {}".format(res.timed_out))
|
print("INFO timed-out : {}".format(res.timed_out))
|
||||||
for line in res.out.split('\n'):
|
for line in res.out.split('\n'):
|
||||||
print("INFO stdout > " + line)
|
print("INFO stdout > " + line.strip())
|
||||||
for line in res.out.split('\n'):
|
for line in res.err.split('\n'):
|
||||||
print("INFO stderr 2> " + line)
|
print("INFO stderr 2> " + line.strip())
|
||||||
|
|
||||||
def wrap_parallel_run_test(test, prefix, resultQueue, options):
|
def wrap_parallel_run_test(test, prefix, resultQueue, options):
|
||||||
# Ignore SIGINT in the child
|
# Ignore SIGINT in the child
|
||||||
|
|
Загрузка…
Ссылка в новой задаче