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

Chris Lattner lattner at cs.uiuc.edu
Sun Aug 17 15:53:01 PDT 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.19 -> 1.20

---
Log message:

Make the check for a failed test run more robust!!


---
Diffs of the changes:

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.19 llvm/utils/NightlyTest.pl:1.20
--- llvm/utils/NightlyTest.pl:1.19	Thu Aug 14 10:26:28 2003
+++ llvm/utils/NightlyTest.pl	Sun Aug 17 15:52:05 2003
@@ -170,7 +170,7 @@
 my $BuildWallTime = GetRegex "([0-9.]+)", `grep '^real' $Prefix-Build-Log.txt`;
 my $BuildTime  = $BuildTimeU+$BuildTimeS;  # BuildTime = User+System
 my $BuildError = "";
-if (`grep '^gmake: .*Error' $Prefix-Build-Log.txt | wc -l` + 0) {
+if (`grep '^gmake[^:]*: .*Error' $Prefix-Build-Log.txt | wc -l` + 0) {
   $BuildError = "<h3>Build error: compilation <a href=\"$DATE-Build-Log.txt\">"
               . "aborted</a></h3>";
 }





More information about the llvm-commits mailing list