]> xenbits.xensource.com Git - people/andrewcoop/xen-test-framework.git/commitdiff
xtf-runner: Adjust whitespace when running multiple tests
authorAndrew Cooper <andrew.cooper3@citrix.com>
Fri, 17 Nov 2017 17:42:18 +0000 (17:42 +0000)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Mon, 20 Nov 2017 10:26:45 +0000 (10:26 +0000)
This visually distinguishes the one test run from the next.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
xtf-runner

index 5ec9af80791d2c17bd0cae14337509856b5c629c..0c3addf5c9525df9fa1b5b8bfff02e05fa57d078 100755 (executable)
@@ -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)