From efe99acb0b8410b4ef9658d1bdcac01c969eab8c Mon Sep 17 00:00:00 2001 From: Tanya Lattner Date: Tue, 2 Oct 2007 00:19:27 +0000 Subject: [PATCH] If the user did not check out LLVM and request it to be built, it should be a build error. This relies on the user having a successful build of LLVM, but the tests will fail if they dont. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@42514 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/NewNightlyTest.pl | 1 - 1 file changed, 1 deletion(-) diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index 2978f291f1b..3def3902ed2 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -737,7 +737,6 @@ $BuildWallTime=-1 unless $BuildWallTime; my $BuildError = 0, $BuildStatus = "OK"; if ($NOBUILD) { $BuildStatus = "Skipped by user"; - $BuildError = 1; } elsif (`grep '^$MAKECMD\[^:]*: .*Error' $BuildLog | wc -l` + 0 || `grep '^$MAKECMD: \*\*\*.*Stop.' $BuildLog | wc -l`+0) { -- 2.11.4.GIT