[llvm-commits] CVS: llvm/utils/NightlyTest.pl

Chris Lattner lattner at cs.uiuc.edu
Thu Mar 17 08:08:01 PST 2005



Changes in directory llvm/utils:

NightlyTest.pl updated: 1.94 -> 1.95
---
Log message:

spiff up the nightly tester output one more notch


---
Diffs of the changes:  (+3 -3)

 NightlyTest.pl |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.94 llvm/utils/NightlyTest.pl:1.95
--- llvm/utils/NightlyTest.pl:1.94	Wed Mar 16 11:09:53 2005
+++ llvm/utils/NightlyTest.pl	Thu Mar 17 10:07:45 2005
@@ -199,7 +199,7 @@
   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 @@
             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";
         }
       }
     }






More information about the llvm-commits mailing list