diff options
author | Evan Cheng <evan.cheng@apple.com> | 2007-11-10 01:33:27 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2007-11-10 01:33:27 +0000 |
commit | 2ba49a942e11498306be6ea08a79261b7d78855d (patch) | |
tree | 5abd2b8a7e3586ccc135825520b9e89a33ef9863 /utils/NewNightlyTest.pl | |
parent | 788ee28a3e9e3347549d3777a8327fc9e67cd95f (diff) | |
download | external_llvm-2ba49a942e11498306be6ea08a79261b7d78855d.zip external_llvm-2ba49a942e11498306be6ea08a79261b7d78855d.tar.gz external_llvm-2ba49a942e11498306be6ea08a79261b7d78855d.tar.bz2 |
Added -test-opts to specify test options.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43971 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/NewNightlyTest.pl')
-rwxr-xr-x | utils/NewNightlyTest.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index 3def390..e433ac0 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -152,6 +152,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { 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; } |