[analyzer]Fix typo, unbreak static analyzer BuildBot (at least
partially).
(Addresses a regression from r162790.)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162864 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/utils/analyzer/SATestBuild.py b/utils/analyzer/SATestBuild.py
index 9c99d0d..27a1867 100755
--- a/utils/analyzer/SATestBuild.py
+++ b/utils/analyzer/SATestBuild.py
@@ -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))