Changes in directory llvm/utils:
NewNightlyTest.pl updated: 1.64 -> 1.65 --- Log message: Add an option to enable lli (interpreter mode) testing. --- Diffs of the changes: (+3 -0) NewNightlyTest.pl | 3 +++ 1 files changed, 3 insertions(+) Index: llvm/utils/NewNightlyTest.pl diff -u llvm/utils/NewNightlyTest.pl:1.64 llvm/utils/NewNightlyTest.pl:1.65 --- llvm/utils/NewNightlyTest.pl:1.64 Thu Oct 19 10:24:04 2006 +++ llvm/utils/NewNightlyTest.pl Fri Nov 24 14:34:16 2006 @@ -31,6 +31,7 @@ # -release Build an LLVM Release version # -release-asserts Build an LLVM ReleaseAsserts version # -enable-llcbeta Enable testing of beta features in llc. +# -enable-lli Enable testing of lli (interpreter) features, default is off # -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. @@ -139,6 +140,8 @@ "OPTIMIZE_OPTION=-O2"; $BUILDTYPE="release-asserts"; next;} if (/^-enable-llcbeta$/) { $PROGTESTOPTS .= " ENABLE_LLCBETA=1"; next; } + if (/^-enable-lli$/) { $PROGTESTOPTS .= " ENABLE_LLI=1"; + $CONFIGUREARGS .= " --enable-lli"; next; } if (/^-disable-llc$/) { $PROGTESTOPTS .= " DISABLE_LLC=1"; $CONFIGUREARGS .= " --disable-llc_diffs"; next; } if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1"; _______________________________________________ llvm-commits mailing list llvm-commits@cs.uiuc.edu http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits