[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:
George Karpenkov 2018-06-29 22:05:13 +00:00
parent fd6e423d4e
commit 534c44af2b
1 changed files with 5 additions and 5 deletions

View File

@ -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.