From ba169c4751be3ac3a6790982a27dfa12bf2674a7 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Sat, 2 Mar 2013 10:50:50 +0100 Subject: [PATCH] Bug 638219 - Followup to fix the output for test failures on tbpl. --- js/src/tests/lib/jittests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/src/tests/lib/jittests.py b/js/src/tests/lib/jittests.py index 267a29e891c..202448ffd07 100755 --- a/js/src/tests/lib/jittests.py +++ b/js/src/tests/lib/jittests.py @@ -496,7 +496,7 @@ def process_test_results(results, num_tests, options): if ok: print_tinderbox("TEST-PASS", res.test); else: - lines = [ _ for _ in out.split('\n') + err.split('\n') + lines = [ _ for _ in res.out.split('\n') + res.err.split('\n') if _ != '' ] if len(lines) >= 1: msg = lines[-1]