File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -482,6 +482,7 @@ def HasRun(self, output):
482
482
print ("--- %s ---" % PrintCrashed (output .output .exit_code ))
483
483
if output .HasTimedOut ():
484
484
print ("--- TIMEOUT ---" )
485
+ print ("\n " ) # Two blank lines between failures, for visual separation
485
486
486
487
def Truncate (self , str , length ):
487
488
if length and (len (str ) > (length - 3 )):
@@ -1779,9 +1780,9 @@ def should_keep(case):
1779
1780
sys .stderr .write ("%4i (%s) %s\n " % (i , t , entry .GetLabel ()))
1780
1781
1781
1782
if result ['allPassed' ]:
1782
- print ('All tests passed.' )
1783
+ print (" \n All tests passed." )
1783
1784
else :
1784
- print ('Failed tests:' )
1785
+ print (" \n Failed tests:" )
1785
1786
for failedTest in result ['failed' ]:
1786
1787
print (EscapeCommand (failedTest .command ))
1787
1788
You can’t perform that action at this time.
0 commit comments