diff options
author | Evan Cheng <evan.cheng@apple.com> | 2006-08-09 05:45:12 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2006-08-09 05:45:12 +0000 |
commit | dcffb0cf818ede16c87f4230f336324b6be51712 (patch) | |
tree | 13b2b46dc26b625f1be245d0606f3a60cfb0fec9 | |
parent | f4334c74e9f77d577e0eb24af945a03626ffd4b9 (diff) | |
download | external_llvm-dcffb0cf818ede16c87f4230f336324b6be51712.zip external_llvm-dcffb0cf818ede16c87f4230f336324b6be51712.tar.gz external_llvm-dcffb0cf818ede16c87f4230f336324b6be51712.tar.bz2 |
Merge some NightlyTest.pl changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29579 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/NewNightlyTest.pl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index e44bae6..e917abf 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -132,6 +132,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; } @@ -168,8 +169,11 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) { if (/^-use-gmake/) { $MAKECMD = "gmake"; shift; next; } + if (/^-compileflags/) { + $MAKEOPTS = "$MAKEOPTS $ARGV[0]"; shift; next; + } if (/^-extraflags/) { - $PROGTESTOPTS .= " EXTRA_FLAGS=\'$ARGV[0]\'"; shift; next; + $CONFIGUREARGS .= " --with-extra-options=\'$ARGV[0]\'"; shift; next; } if (/^-noexternals$/) { $NOEXTERNALS = 1; next; } if (/^-nodejagnu$/) { $NODEJAGNU = 1; next; } |