From 4a8c37b4c5e5d58d72c65ab9b6e16bfd328bb400 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 23 Sep 2003 22:02:01 +0000 Subject: [PATCH] Fix bug in previous checkin llvm-svn: 8694 --- utils/NightlyTest.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 50756bf3f6e..8ab3a59929f 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -198,7 +198,7 @@ my $BuildWallTime = GetRegexNum "^real", 1, "([0-9.]+)","$Prefix-Build-Log.txt"; 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 = "

Build error: compilation " . "aborted

"; }