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

Chris Lattner lattner at cs.uiuc.edu
Sun May 11 10:24:01 PDT 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.11 -> 1.12

---
Log message:

Fix a halfway done change to the nightly tester :(


---
Diffs of the changes:

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.11 llvm/utils/NightlyTest.pl:1.12
--- llvm/utils/NightlyTest.pl:1.11	Sat May 10 16:40:10 2003
+++ llvm/utils/NightlyTest.pl	Sun May 11 10:23:10 2003
@@ -281,6 +281,10 @@
     $TestError = 1;
     $ProgramsTable = "<font color=white><h2>Error running tests!</h2></font>";
   } elsif (`grep '^gmake: .*No rule to make target' $Prefix-ProgramTest.txt | wc -l` + 0) {
+    $TestError = 1;
+    $ProgramsTable =
+      "<font color=white><h2>Makefile error running tests!</h2></font>";
+  } else {
     $TestError = 0;
     $ProgramsTable = ReadFile "report.nightly.html";
 





More information about the llvm-commits mailing list