From 534c44af2b96e7c066e49de7f4428205a6713d7c Mon Sep 17 00:00:00 2001 From: George Karpenkov Date: Fri, 29 Jun 2018 22:05:13 +0000 Subject: [PATCH] [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 --- utils/analyzer/SATestBuild.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/utils/analyzer/SATestBuild.py b/utils/analyzer/SATestBuild.py index 3137b48a78..00f3bd853d 100755 --- a/utils/analyzer/SATestBuild.py +++ b/utils/analyzer/SATestBuild.py @@ -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. -- 2.40.0