aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-12-06 18:33:54 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-12-06 18:33:54 +0000
commit2e4cdbfc5aba1a732c0a8ad7b53cb9028485eb81 (patch)
tree33bbeec3c251c5688421628f3d55936e29122d5b
parentc537224c0092658d99ef898e25e8a209fb3c43e8 (diff)
downloadexternal_llvm-2e4cdbfc5aba1a732c0a8ad7b53cb9028485eb81.zip
external_llvm-2e4cdbfc5aba1a732c0a8ad7b53cb9028485eb81.tar.gz
external_llvm-2e4cdbfc5aba1a732c0a8ad7b53cb9028485eb81.tar.bz2
Rather than break all the nightly test invocations, permit -enable-linscan
option to be specified, but do nothing with it. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18575 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-xutils/NightlyTest.pl3
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl
index 5fd45cc..d178d08 100755
--- a/utils/NightlyTest.pl
+++ b/utils/NightlyTest.pl
@@ -23,7 +23,7 @@
# -parallel Run two parallel jobs with GNU Make.
# -release Build an LLVM Release version
# -pedantic Enable additional GCC warnings to detect possible errors.
-# -enable-linscan Enable linearscan tests
+# -enable-linscan Accepted but ignored
# -disable-llc Disable LLC tests in the nightly tester.
# -disable-jit Disable JIT tests in the nightly tester.
# -verbose Turn on some debug output
@@ -260,6 +260,7 @@ while (scalar(@ARGV) and ($_ = $ARGV[0], /^[-+]/)) {
$MAKEOPTS = "$MAKEOPTS CompileOptimizeOpts='-O3 -DNDEBUG -finline-functions -Wpointer-arith -Wcast-align -Wno-deprecated -Wold-style-cast -Wabi -Woverloaded-virtual -ffor-scope'";
next;
}
+ if (/^-enable-linscan$/) { next; }
if (/^-disable-llc$/) { $PROGTESTOPTS .= " DISABLE_LLC=1";
$CONFIGUREARGS .= " --disable-llc_diffs"; next; }
if (/^-disable-jit$/) { $PROGTESTOPTS .= " DISABLE_JIT=1";