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

Chris Lattner lattner at cs.uiuc.edu
Tue Sep 23 15:34:01 PDT 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.30 -> 1.31

---
Log message:

Make it detect failed builds better


---
Diffs of the changes:

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.30 llvm/utils/NightlyTest.pl:1.31
--- llvm/utils/NightlyTest.pl:1.30	Sun Sep 14 01:00:49 2003
+++ llvm/utils/NightlyTest.pl	Tue Sep 23 15:33:04 2003
@@ -197,7 +197,8 @@
 my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$Prefix-Build-Log.txt";
 
 my $BuildError = "";
-if (`grep '^gmake[^:]*: .*Error' $Prefix-Build-Log.txt | wc -l` + 0) {
+if (`grep '^gmake[^:]*: .*Error' $Prefix-Build-Log.txt | wc -l` + 0 ||
+    `grep '^gmake: \*\*\*.*Stop.`+0) {
   $BuildError = "<h3><font color='red'>Build error: compilation " .
                 "<a href=\"$DATE-Build-Log.txt\">aborted</a></font></h3>";
 }





More information about the llvm-commits mailing list