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

Patrick Jenkins pjenkins at apple.com
Thu Jul 6 15:32:28 PDT 2006



Changes in directory llvm/utils:

NewNightlyTest.pl updated: 1.1 -> 1.2
---
Log message:

Fixed a bug that looked for -Warnings.txt and -Tests.txt in ridiculous places.


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

 NewNightlyTest.pl |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.1 llvm/utils/NewNightlyTest.pl:1.2
--- llvm/utils/NewNightlyTest.pl:1.1	Thu Jul  6 16:19:32 2006
+++ llvm/utils/NewNightlyTest.pl	Thu Jul  6 17:32:15 2006
@@ -697,7 +697,7 @@
 
 # Emit the warnings file, so we can diff...
 WriteFile "$WebDir/$DATE-Warnings.txt", $WarningsFile . "\n";
-my ($WarningsAdded, $WarningsRemoved) = DiffFiles "$Prefix-Warnings.txt";
+my ($WarningsAdded, $WarningsRemoved) = DiffFiles "-Warnings.txt";
 
 # Output something to stdout if something has changed
 #print "ADDED   WARNINGS:\n$WarningsAdded\n\n" if (length $WarningsAdded);
@@ -812,7 +812,7 @@
     $TestsFixed   = "<b>error testing</b><br>";
     $TestsBroken  = "<b>error testing</b><br>";
 } else {
-    my ($RTestsAdded, $RTestsRemoved) = DiffFiles "$Prefix-Tests.txt";
+    my ($RTestsAdded, $RTestsRemoved) = DiffFiles "-Tests.txt";
 
     my @RawTestsAddedArray = split '\n', $RTestsAdded;
     my @RawTestsRemovedArray = split '\n', $RTestsRemoved;






More information about the llvm-commits mailing list