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

Misha Brukman brukman at cs.uiuc.edu
Thu Aug 21 15:24:02 PDT 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.28 -> 1.29

---
Log message:

Make build errors stand out by coloring them red.


---
Diffs of the changes:

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.28 llvm/utils/NightlyTest.pl:1.29
--- llvm/utils/NightlyTest.pl:1.28	Thu Aug 21 10:55:26 2003
+++ llvm/utils/NightlyTest.pl	Thu Aug 21 15:22:52 2003
@@ -198,10 +198,9 @@
 
 my $BuildError = "";
 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>";
+  $BuildError = "<h3><font color='red'>Build error: compilation " .
+                "<a href=\"$DATE-Build-Log.txt\">aborted</a></font></h3>";
 }
-
 
 #
 # Get warnings from the build





More information about the llvm-commits mailing list