From: Misha Brukman Date: Thu, 21 Aug 2003 20:22:52 +0000 (+0000) Subject: Make build errors stand out by coloring them red. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=71b0a31a3bebf45d56013879099489d7678948db;p=oota-llvm.git Make build errors stand out by coloring them red. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8017 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 6582969db3f..acf32165b9d 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -198,11 +198,10 @@ my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$Prefix-Build-Log.txt"; my $BuildError = ""; if (`grep '^gmake[^:]*: .*Error' $Prefix-Build-Log.txt | wc -l` + 0) { - $BuildError = "

Build error: compilation " - . "aborted

"; + $BuildError = "

Build error: compilation " . + "aborted

"; } - # # Get warnings from the build #