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

Chris Lattner lattner at cs.uiuc.edu
Tue Sep 23 17:03:02 PDT 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.31 -> 1.32

---
Log message:

Fix bug in previous checkin


---
Diffs of the changes:

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.31 llvm/utils/NightlyTest.pl:1.32
--- llvm/utils/NightlyTest.pl:1.31	Tue Sep 23 15:33:04 2003
+++ llvm/utils/NightlyTest.pl	Tue Sep 23 17:02:01 2003
@@ -198,7 +198,7 @@
 
 my $BuildError = "";
 if (`grep '^gmake[^:]*: .*Error' $Prefix-Build-Log.txt | wc -l` + 0 ||
-    `grep '^gmake: \*\*\*.*Stop.`+0) {
+    `grep '^gmake: \*\*\*.*Stop.' $Prefix-Build-Log.txt | wc -l`+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