[llvm-commits] [llvm] r43971 - /llvm/trunk/utils/NewNightlyTest.pl
Evan Cheng
evan.cheng at apple.com
Fri Nov 9 17:33:27 PST 2007
Author: evancheng
Date: Fri Nov 9 19:33:27 2007
New Revision: 43971
URL: http://llvm.org/viewvc/llvm-project?rev=43971&view=rev
Log:
Added -test-opts to specify test options.
Modified:
llvm/trunk/utils/NewNightlyTest.pl
Modified: llvm/trunk/utils/NewNightlyTest.pl
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/NewNightlyTest.pl?rev=43971&r1=43970&r2=43971&view=diff
==============================================================================
--- llvm/trunk/utils/NewNightlyTest.pl (original)
+++ llvm/trunk/utils/NewNightlyTest.pl Fri Nov 9 19:33:27 2007
@@ -152,6 +152,7 @@
if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";
$CONFIGUREARGS .= " --disable-jit"; next; }
if (/^-disable-cbe$/) { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
+ if (/^-test-opts$/) { $PROGTESTOPTS .= "$ARGV[0]"; shift; next; }
if (/^-verbose$/) { $VERBOSE = 1; next; }
if (/^-debug$/) { $DEBUG = 1; next; }
if (/^-nice$/) { $NICE = "nice "; next; }
More information about the llvm-commits
mailing list