summaryrefslogtreecommitdiffstats
path: root/llvm
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-03-10 19:33:13 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-03-10 19:33:13 +0000
commite2c9defed878ccdddf57445f49b1fb6f2b324357 (patch)
tree35bd4321a44c3ccfb0fa0bb8acb45ff51c5a791c /llvm
parent02ba62c10695897846832ec3197c033cd64d95cb (diff)
downloadbcm5719-llvm-e2c9defed878ccdddf57445f49b1fb6f2b324357.tar.gz
bcm5719-llvm-e2c9defed878ccdddf57445f49b1fb6f2b324357.zip
Add -disable-bindings for utils/NewNightlyTest.pl
llvm-svn: 66566
Diffstat (limited to 'llvm')
-rwxr-xr-xllvm/utils/NewNightlyTest.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/utils/NewNightlyTest.pl b/llvm/utils/NewNightlyTest.pl
index 8ca7a764a6f..98f6158ec48 100755
--- a/llvm/utils/NewNightlyTest.pl
+++ b/llvm/utils/NewNightlyTest.pl
@@ -36,6 +36,7 @@ use Socket;
# -disable-jit Disable JIT tests in the nightly tester.
# -disable-cbe Disable C backend tests in the nightly tester.
# -disable-lto Disable link time optimization.
+# -disable-bindings Disable building LLVM bindings.
# -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
@@ -154,6 +155,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-bindings$/) { $CONFIGUREARGS .= " --disable-bindings"; next; }
if (/^-disable-cbe$/) { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
if (/^-disable-lto$/) { $PROGTESTOPTS .= " DISABLE_LTO=1"; next; }
if (/^-test-opts$/) { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; }
OpenPOWER on IntegriCloud