From c064ec70edc3f0477780cd0a32e091af1824d06f Mon Sep 17 00:00:00 2001 From: o9000 Date: Fri, 29 Dec 2017 12:53:29 +0100 Subject: [PATCH] Fix CI script --- test/regression.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/regression.py b/test/regression.py index 8417143..d2d0172 100755 --- a/test/regression.py +++ b/test/regression.py @@ -246,10 +246,10 @@ def run_unit_tests(tint2path, use_asan): return if "tests succeeded" in out: num_tests = [line for line in out.split("\n") if "tint2: Running" in line][0] - print "All {0} tests succeeded.".format(num_tests) + print("All {0} tests succeeded.".format(num_tests)) return if "tests failed" in out: - print out + print("```\n" + out.strip() + "\n```") stop_xvfb()