Skip to content

Commit e2c9def

Browse files
committed
Add -disable-bindings for utils/NewNightlyTest.pl
llvm-svn: 66566
1 parent 02ba62c commit e2c9def

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

llvm/utils/NewNightlyTest.pl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
# -disable-jit Disable JIT tests in the nightly tester.
3737
# -disable-cbe Disable C backend tests in the nightly tester.
3838
# -disable-lto Disable link time optimization.
39+
# -disable-bindings Disable building LLVM bindings.
3940
# -verbose Turn on some debug output
4041
# -debug Print information useful only to maintainers of this script.
4142
# -nice Checkout/Configure/Build with "nice" to reduce impact
@@ -154,6 +155,7 @@
154155
$CONFIGUREARGS .= " --disable-llc_diffs"; next; }
155156
if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";
156157
$CONFIGUREARGS .= " --disable-jit"; next; }
158+
if (/^-disable-bindings$/) { $CONFIGUREARGS .= " --disable-bindings"; next; }
157159
if (/^-disable-cbe$/) { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
158160
if (/^-disable-lto$/) { $PROGTESTOPTS .= " DISABLE_LTO=1"; next; }
159161
if (/^-test-opts$/) { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; }

0 commit comments

Comments
 (0)