[cfe-commits] r168174 - /cfe/trunk/utils/analyzer/SATestBuild.py

Jordan Rose jordan_rose at apple.com
Fri Nov 16 09:41:21 PST 2012


Author: jrose
Date: Fri Nov 16 11:41:21 2012
New Revision: 168174

URL: http://llvm.org/viewvc/llvm-project?rev=168174&view=rev
Log:
[analyzer] SATestBuild.py: fix broken string concatenation

This has been broken for a while, but the branch was never being taken.
(We were trying to do 'str + floatVal'; now we do 'str % intVal' and use
the '%d' format.)

Modified:
    cfe/trunk/utils/analyzer/SATestBuild.py

Modified: cfe/trunk/utils/analyzer/SATestBuild.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/analyzer/SATestBuild.py?rev=168174&r1=168173&r2=168174&view=diff
==============================================================================
--- cfe/trunk/utils/analyzer/SATestBuild.py (original)
+++ cfe/trunk/utils/analyzer/SATestBuild.py Fri Nov 16 11:41:21 2012
@@ -142,7 +142,7 @@
     sys.exit(-1)
 
 # Number of jobs.
-Jobs = math.ceil(detectCPUs() * 0.75)
+Jobs = int(math.ceil(detectCPUs() * 0.75))
 
 # Project map stores info about all the "registered" projects.
 ProjectMapFile = "projectMap.csv"
@@ -214,7 +214,7 @@
             # to speed up analysis.  xcodebuild will
             # automatically use the maximum number of cores.
             if Command.startswith("make ") or Command == "make":
-                Command += " -j" + Jobs
+                Command += " -j%d" % Jobs
             SBCommand = SBPrefix + Command
             if Verbose == 1:        
                 print "  Executing: %s" % (SBCommand,)





More information about the cfe-commits mailing list