forked from OSchip/llvm-project
[analyzer] Always use ccc-analyzer when running scan-build on buildbot
llvm-svn: 182982
This commit is contained in:
parent
9f53c950df
commit
7b4f8a4181
|
@ -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 + " "
|
||||
|
|
Loading…
Reference in New Issue