From 8f45731da5ce79624b5212b724e7ec5a1f2996fa Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 17 Mar 2005 16:07:45 +0000 Subject: [PATCH] spiff up the nightly tester output one more notch git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20650 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/NightlyTest.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index e9f44999424..9dcaa616578 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -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, "\n"); } push(@lines, "

STATISTICS

\n");
-          print "\nSTATISTICS:\n";
+          print "\nDEJAGNU STATISTICS:\n";
           $should_break = 0;
           $nocopy = 0;
           $readingsum = 1;
         } elsif ( $readingsum ) {
           push(@lines,"$_\n");
-          print "$_\n";
+          print "  $_\n";
         }
       }
     }