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

Chris Lattner lattner at cs.uiuc.edu
Sat May 10 16:41:01 PDT 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.10 -> 1.11

---
Log message:

Get the nightly tester to detect other kind of testing problems


---
Diffs of the changes:

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.10 llvm/utils/NightlyTest.pl:1.11
--- llvm/utils/NightlyTest.pl:1.10	Sat May 10 16:19:00 2003
+++ llvm/utils/NightlyTest.pl	Sat May 10 16:40:10 2003
@@ -279,8 +279,8 @@
 
   if (`grep '^gmake: .*Error' $Prefix-ProgramTest.txt | wc -l` + 0) {
     $TestError = 1;
-    $ProgramsTable = "<h2>Error running tests!</h2>";
-  } else {
+    $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 = 0;
     $ProgramsTable = ReadFile "report.nightly.html";
 





More information about the llvm-commits mailing list