]> granicus.if.org Git - clang/commitdiff
[analyzer] Tweak the buildbot script to include the experimental taint checker and...
authorAnna Zaks <ganna@apple.com>
Fri, 20 Jan 2012 19:10:59 +0000 (19:10 +0000)
committerAnna Zaks <ganna@apple.com>
Fri, 20 Jan 2012 19:10:59 +0000 (19:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@148558 91177308-0d34-0410-b5e6-96231b3b80d8

utils/analyzer/SATestBuild.py

index 79092d6fef9000f4f33b6137b4dc412a98f61cf2..5d7d42781ecbd81ef5e056aef7fc97fda2218737 100755 (executable)
@@ -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");