[cfe-commits] r162864 - /cfe/trunk/utils/analyzer/SATestBuild.py
Anna Zaks
ganna at apple.com
Wed Aug 29 14:22:41 PDT 2012
Author: zaks
Date: Wed Aug 29 16:22:40 2012
New Revision: 162864
URL: http://llvm.org/viewvc/llvm-project?rev=162864&view=rev
Log:
[analyzer]Fix typo, unbreak static analyzer BuildBot (at least
partially).
(Addresses a regression from r162790.)
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=162864&r1=162863&r2=162864&view=diff
==============================================================================
--- cfe/trunk/utils/analyzer/SATestBuild.py (original)
+++ cfe/trunk/utils/analyzer/SATestBuild.py Wed Aug 29 16:22:40 2012
@@ -213,7 +213,7 @@
# If using 'make', auto imply a -jX argument
# to speed up analysis. xcodebuild will
# automatically use the maximum number of cores.
- if Command.startsWith("make "):
+ if Command.startswith("make "):
Command += "-j" + Jobs
SBCommand = SBPrefix + Command
if Verbose == 1:
@@ -404,6 +404,9 @@
RefList = glob.glob(RefDir + "/*")
NewList = glob.glob(NewDir + "/*")
+ print " Comparing Results: %s" % (os.path.join(RefDir, LogFolderName))
+ print " Comparing Results: %s" % (os.path.join(NewDir, LogFolderName))
+
# Log folders are also located in the results dir, so ignore them.
RefList.remove(os.path.join(RefDir, LogFolderName))
NewList.remove(os.path.join(NewDir, LogFolderName))
More information about the cfe-commits
mailing list