summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorAnna Zaks <ganna@apple.com>2012-01-21 01:11:35 +0000
committerAnna Zaks <ganna@apple.com>2012-01-21 01:11:35 +0000
commit8c345c0fc321ada7336ee13b0cd815b91553edaf (patch)
treec90e56a6ce2bf5a0b665b2490f38960396c8fea5 /utils
parentbe25db97e20f72e960d87b52216b9fd9871c620b (diff)
[analyzer] Unbreak the static analyzer bot. Regression from r148558.
When we build a single source file, we call clang directly (not though scan-build). git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148612 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-xutils/analyzer/SATestBuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/analyzer/SATestBuild.py b/utils/analyzer/SATestBuild.py
index 5d7d42781e..a45263b15c 100755
--- a/utils/analyzer/SATestBuild.py
+++ b/utils/analyzer/SATestBuild.py
@@ -171,7 +171,7 @@ def runAnalyzePreprocessed(Dir, SBOutputDir):
raise Exception()
CmdPrefix = "clang -cc1 -analyze -analyzer-output=plist -w "
- CmdPrefix += "-enable-checker " + Checkers +" -fcxx-exceptions -fblocks "
+ CmdPrefix += "-analyzer-checker=" + Checkers +" -fcxx-exceptions -fblocks "
PlistPath = os.path.join(Dir, SBOutputDir, "date")
FailPath = os.path.join(PlistPath, "failures");