[llvm-commits] [llvm] r45964 - /llvm/trunk/utils/NewNightlyTest.pl

Evan Cheng evan.cheng at apple.com
Mon Jan 14 09:58:05 PST 2008


Author: evancheng
Date: Mon Jan 14 11:58:03 2008
New Revision: 45964

URL: http://llvm.org/viewvc/llvm-project?rev=45964&view=rev
Log:
Need a space to separate Make options.

Modified:
    llvm/trunk/utils/NewNightlyTest.pl

Modified: llvm/trunk/utils/NewNightlyTest.pl
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/utils/NewNightlyTest.pl?rev=45964&r1=45963&r2=45964&view=diff

==============================================================================
--- llvm/trunk/utils/NewNightlyTest.pl (original)
+++ llvm/trunk/utils/NewNightlyTest.pl Mon Jan 14 11:58:03 2008
@@ -154,7 +154,7 @@
                              $CONFIGUREARGS .= " --disable-jit"; next; }
   if (/^-disable-cbe$/)    { $PROGTESTOPTS .= " DISABLE_CBE=1"; next; }
   if (/^-disable-lto$/)    { $PROGTESTOPTS .= " DISABLE_LTO=1"; next; }
-  if (/^-test-opts$/)      { $PROGTESTOPTS .= "$ARGV[0]"; shift; next; }
+  if (/^-test-opts$/)      { $PROGTESTOPTS .= " $ARGV[0]"; shift; next; }
   if (/^-verbose$/)        { $VERBOSE = 1; next; }
   if (/^-debug$/)          { $DEBUG = 1; next; }
   if (/^-nice$/)           { $NICE = "nice "; next; }





More information about the llvm-commits mailing list