[llvm-commits] CVS: llvm/utils/NightlyTest.pl

Reid Spencer reid at x10sys.com
Mon Dec 6 10:34:05 PST 2004



Changes in directory llvm/utils:

NightlyTest.pl updated: 1.79 -> 1.80
---
Log message:

Rather than break all the nightly test invocations, permit -enable-linscan
option to be specified, but do nothing with it.


---
Diffs of the changes:  (+2 -1)

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.79 llvm/utils/NightlyTest.pl:1.80
--- llvm/utils/NightlyTest.pl:1.79	Mon Dec  6 12:29:14 2004
+++ llvm/utils/NightlyTest.pl	Mon Dec  6 12:33:54 2004
@@ -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 @@
       $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";






More information about the llvm-commits mailing list