diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-06-25 07:25:28 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-06-25 07:25:28 +0000 |
commit | 2280098594e7527c86c6f36e657c0a5e14f2fc95 (patch) | |
tree | c79ebae5a7cee34e2d6f3295c5e0c02bf87ad013 | |
parent | 439194655810170cf600929fabc5fdeb2772f298 (diff) |
Don't try to run qmtests if we fail to build the tree. The qmtests (at
least, on macosx) will spiral out of control instead of failing gracefully.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14396 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NightlyTest.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl index 67da24f447..be1363bfcb 100755 --- a/utils/NightlyTest.pl +++ b/utils/NightlyTest.pl @@ -404,6 +404,8 @@ if (`grep '^gmake[^:]*: .*Error' $BuildLog | wc -l` + 0 || if ($VERBOSE) { print "BUILD ERROR\n"; } } +if ($BuildError) { $NOFEATURES = 1; $NOREGRESSIONS = 1; } + # Get results of feature tests. my $FeatureTestResults; # String containing the results of the feature tests my $FeatureTime; # System+CPU Time for feature tests |