aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2006-06-29 00:54:37 +0000
committerEvan Cheng <evan.cheng@apple.com>2006-06-29 00:54:37 +0000
commit2a0f984771fcdbc6c59c87e492e405ba630a4838 (patch)
tree04a9835472bfc7c1d91a2ac4302187549bdd93f6
parent09c545790dc3a512d50ba787a688e194eced6a34 (diff)
Added -disable-cbe to disable C backend testing.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28981 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/NightlyTest.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl
index 3592f1d7ae..270753c21f 100755
--- a/utils/NightlyTest.pl
+++ b/utils/NightlyTest.pl
@@ -23,6 +23,7 @@
# -enable-llcbeta Enable testing of beta features in llc.
# -disable-llc Disable LLC tests in the nightly tester.
# -disable-jit Disable JIT tests in the nightly tester.
+# -disable-cbe Disable C backend tests in the nightly tester.
# -verbose Turn on some debug output
# -debug Print information useful only to maintainers of this script.
# -nice Checkout/Configure/Build with "nice" to reduce impact
@@ -303,6 +304,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
$CONFIGUREARGS .= " --disable-llc_diffs"; next; }
if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";
$CONFIGUREARGS .= " --disable-jit"; next; }
+ if (/^-disable-cbe$/) { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
if (/^-verbose$/) { $VERBOSE = 1; next; }
if (/^-debug$/) { $DEBUG = 1; next; }
if (/^-nice$/) { $NICE = "nice "; next; }