spiff up the nightly tester output one more notch
authorChris Lattner <sabre@nondot.org>
Thu, 17 Mar 2005 16:07:45 +0000 (16:07 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 17 Mar 2005 16:07:45 +0000 (16:07 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20650 91177308-0d34-0410-b5e6-96231b3b80d8

utils/NightlyTest.pl

index e9f44999424c5f8bc4d3dcac3f162f982b35c81f..9dcaa616578cb489c345d8314dff7fe7a74d23ed 100755 (executable)
@@ -199,7 +199,7 @@ sub GetDejagnuTestResults { # (filename, log)
   my $firstline;
   $/ = "\n"; #Make sure we're going line at a time.
 
-  print "Dejagnu test results:\n";
+  print "DEJAGNU TEST RESULTS:\n";
 
   if (open SRCHFILE, $filename) {
     # Process test results
@@ -230,13 +230,13 @@ sub GetDejagnuTestResults { # (filename, log)
             push(@lines, "</li></ol>\n");
           }
           push(@lines, "<h3>STATISTICS</h3><pre>\n");
-          print "\nSTATISTICS:\n";
+          print "\nDEJAGNU STATISTICS:\n";
           $should_break = 0;
           $nocopy = 0;
           $readingsum = 1;
         } elsif ( $readingsum ) {
           push(@lines,"$_\n");
-          print "$_\n";
+          print "  $_\n";
         }
       }
     }