[analyzer] Always use ccc-analyzer when running scan-build on buildbot

llvm-svn: 182982
This commit is contained in:
Anna Zaks 2013-05-31 02:31:09 +00:00
parent 9f53c950df
commit 7b4f8a4181
1 changed files with 3 additions and 0 deletions

View File

@ -208,6 +208,9 @@ def runScanBuild(Dir, SBOutputDir, PBuildLogFile):
SBOptions += "-plist-html -o " + SBOutputDir + " "
SBOptions += "-enable-checker " + Checkers + " "
SBOptions += "--keep-empty "
# Always use ccc-analyze to ensure that we can locate the failures
# directory.
SBOptions += "--override-compiler "
try:
SBCommandFile = open(BuildScriptPath, "r")
SBPrefix = "scan-build " + SBOptions + " "