From: George Karpenkov Date: Tue, 2 Oct 2018 22:31:44 +0000 (+0000) Subject: [analyzer] [tests] Hotfix: missing space X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4de6ad0acae7711cf920eb5851e673976140d91b;p=clang [analyzer] [tests] Hotfix: missing space git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@343643 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/analyzer/SATestBuild.py b/utils/analyzer/SATestBuild.py index f78e86adbd..fbf3882c03 100755 --- a/utils/analyzer/SATestBuild.py +++ b/utils/analyzer/SATestBuild.py @@ -351,7 +351,7 @@ def runAnalyzePreprocessed(Args, Dir, SBOutputDir, Mode): CmdPrefix += "-analyze -analyzer-output=plist -w " CmdPrefix += "-analyzer-checker=" + Checkers CmdPrefix += " -fcxx-exceptions -fblocks " - CmdPrefix += " -analyzer-config " + generateAnalyzerConfig(Args) + CmdPrefix += " -analyzer-config %s " % generateAnalyzerConfig(Args) if (Mode == 2): CmdPrefix += "-std=c++11 "