Changes in directory llvm/utils:

NewNightlyTest.pl updated: 1.46 -> 1.47
---
Log message:

Merge some NightlyTest.pl changes.

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

 NewNightlyTest.pl |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletion(-)


Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.46 llvm/utils/NewNightlyTest.pl:1.47
--- llvm/utils/NewNightlyTest.pl:1.46   Mon Aug  7 21:03:53 2006
+++ llvm/utils/NewNightlyTest.pl        Wed Aug  9 00:45:12 2006
@@ -132,6 +132,7 @@
                               $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 @@
     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; }



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to