diff options
author | Chris Lattner <sabre@nondot.org> | 2005-03-17 16:07:45 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-03-17 16:07:45 +0000 |
commit | 8f45731da5ce79624b5212b724e7ec5a1f2996fa (patch) | |
tree | 03b03d2eaa9cf5a63a2ca613becd8b0f238ed1e0 | |
parent | 5b3a4553c1da7e417a240379e2f510c77532c5c1 (diff) |
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
-rwxr-xr-x | utils/NightlyTest.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index e9f4499942..9dcaa61657 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, "</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"; } } } |