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 | 537851f6e7591e5331b0947d2cdfc014ffff0b3c (patch) | |
tree | 2eb6852d79e6f5322ae2a265bbc2926dd94a7435 /llvm/utils | |
parent | e67d8400f6be28a1468ff484167969f3294b6a24 (diff) | |
download | bcm5719-llvm-537851f6e7591e5331b0947d2cdfc014ffff0b3c.tar.gz bcm5719-llvm-537851f6e7591e5331b0947d2cdfc014ffff0b3c.zip |
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.
llvm-svn: 14396
Diffstat (limited to 'llvm/utils')
-rwxr-xr-x | llvm/utils/NightlyTest.pl | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/utils/NightlyTest.pl b/llvm/utils/NightlyTest.pl index 67da24f4472..be1363bfcb9 100755 --- a/llvm/utils/NightlyTest.pl +++ b/llvm/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 |