mirror of https://github.com/microsoft/clang.git
[analyzer] [tests] Fix 80 column violation in SATestBuild.py
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@336022 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fd6e423d4e
commit
534c44af2b
|
@ -274,13 +274,13 @@ def runScanBuild(Dir, SBOutputDir, PBuildLogFile):
|
|||
SBOptions += "-plist-html -o '%s' " % SBOutputDir
|
||||
SBOptions += "-enable-checker " + AllCheckers + " "
|
||||
SBOptions += "--keep-empty "
|
||||
AnalyzerConfig = {
|
||||
"stable-report-filename": "true",
|
||||
"serialize-stats": "true"
|
||||
}
|
||||
AnalyzerConfig = [
|
||||
("stable-report-filename", "true"),
|
||||
("serialize-stats", "true"),
|
||||
]
|
||||
|
||||
SBOptions += "-analyzer-config '%s' " % (
|
||||
",".join("%s=%s" % (key, value) for key, value in AnalyzerConfig.iteritems()))
|
||||
",".join("%s=%s" % (key, value) for (key, value) in AnalyzerConfig))
|
||||
|
||||
# Always use ccc-analyze to ensure that we can locate the failures
|
||||
# directory.
|
||||
|
|
Loading…
Reference in New Issue