[LNT] r236330 - Fixup command line make paramters

Chris Matthews cmatthews5 at apple.com
Fri May 1 11:47:59 PDT 2015


Author: cmatthews
Date: Fri May  1 13:47:59 2015
New Revision: 236330

URL: http://llvm.org/viewvc/llvm-project?rev=236330&view=rev
Log:
Fixup command line make paramters

Modified:
    lnt/trunk/lnt/tests/nt.py

Modified: lnt/trunk/lnt/tests/nt.py
URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/lnt/tests/nt.py?rev=236330&r1=236329&r2=236330&view=diff
==============================================================================
--- lnt/trunk/lnt/tests/nt.py (original)
+++ lnt/trunk/lnt/tests/nt.py Fri May  1 13:47:59 2015
@@ -390,12 +390,11 @@ class TestConfiguration(object):
         # Add in any additional make flags passed in via --make-param.
         for entry in self.make_parameters:
             if '=' not in entry:
-                name, value = entry,''
+                name, value = entry, ''
             else:
                 name, value = entry.split('=', 1)
-                print "make", name, value
-                make_variables[name] = value
 
+            make_variables[name] = value
 
         # Set remote execution variables, if used.
         if self.remote:





More information about the llvm-commits mailing list