diff options
author | Anna Zaks <ganna@apple.com> | 2012-01-20 19:10:59 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-01-20 19:10:59 +0000 |
commit | afb51afd986384d88161ff0f8a4731847236126a (patch) | |
tree | bee8cc63e9032ea72a8d3b793faebd4b37969589 | |
parent | c891666f477bfee387c10a429038eb6d98e9d175 (diff) |
[analyzer] Tweak the buildbot script to include the experimental taint checker and correct the checker enabling setting.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148558 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/analyzer/SATestBuild.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/analyzer/SATestBuild.py b/utils/analyzer/SATestBuild.py index 79092d6fef..5d7d42781e 100755 --- a/utils/analyzer/SATestBuild.py +++ b/utils/analyzer/SATestBuild.py @@ -72,7 +72,7 @@ SBOutputDirReferencePrefix = "Ref" # The list of checkers used during analyzes. # Currently, consists of all the non experimental checkers. -Checkers="core,deadcode,cplusplus,security,unix,osx,cocoa" +Checkers="experimental.security.taint,core,deadcode,cplusplus,security,unix,osx,cocoa" Verbose = 1 @@ -171,7 +171,7 @@ def runAnalyzePreprocessed(Dir, SBOutputDir): raise Exception() CmdPrefix = "clang -cc1 -analyze -analyzer-output=plist -w " - CmdPrefix += "-analyzer-checker=" + Checkers +" -fcxx-exceptions -fblocks " + CmdPrefix += "-enable-checker " + Checkers +" -fcxx-exceptions -fblocks " PlistPath = os.path.join(Dir, SBOutputDir, "date") FailPath = os.path.join(PlistPath, "failures"); |