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.