From 167052779c0546e99aadd26ebd848e10f91fb557 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Fri, 17 Nov 2017 17:42:18 +0000 Subject: [PATCH] xtf-runner: Adjust whitespace when running multiple tests This visually distinguishes the one test run from the next. Signed-off-by: Andrew Cooper --- xtf-runner | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xtf-runner b/xtf-runner index 5ec9af8..0c3addf 100755 --- a/xtf-runner +++ b/xtf-runner @@ -488,6 +488,7 @@ def run_test_console(opts, test): if lines: if not opts.quiet: print "\n".join(lines) + print "" else: return "CRASH" @@ -530,6 +531,7 @@ def run_test_logfile(opts, test): print line if "Test result:" in line: + print "" break logfile.close() @@ -563,7 +565,7 @@ def run_tests(opts): results.append(res) - print "\nCombined test results:" + print "Combined test results:" for test, res in zip(tests, results): print "%-40s %s" % (test, res) -- 2.39.5