Changes in directory llvm/utils:
NightlyTest.pl updated: 1.111 -> 1.112 --- Log message: Added -disable-cbe to disable C backend testing. --- Diffs of the changes: (+2 -0) NightlyTest.pl | 2 ++ 1 files changed, 2 insertions(+) Index: llvm/utils/NightlyTest.pl diff -u llvm/utils/NightlyTest.pl:1.111 llvm/utils/NightlyTest.pl:1.112 --- llvm/utils/NightlyTest.pl:1.111 Tue Jun 27 15:30:28 2006 +++ llvm/utils/NightlyTest.pl Wed Jun 28 19:54:37 2006 @@ -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 @@ $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; } _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits