mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-13 22:58:50 +00:00
Added -disable-cbe to disable C backend testing.
llvm-svn: 28981
This commit is contained in:
parent
1d5fa40da3
commit
55368f109b
@ -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; }
|
||||
|
Loading…
Reference in New Issue
Block a user