[cfe-commits] r148558 - /cfe/trunk/utils/analyzer/SATestBuild.py
Anna Zaks
ganna at apple.com
Fri Jan 20 11:11:00 PST 2012
Author: zaks
Date: Fri Jan 20 13:10:59 2012
New Revision: 148558
URL: http://llvm.org/viewvc/llvm-project?rev=148558&view=rev
Log:
[analyzer] Tweak the buildbot script to include the experimental taint checker and correct the checker enabling setting.
Modified:
cfe/trunk/utils/analyzer/SATestBuild.py
Modified: cfe/trunk/utils/analyzer/SATestBuild.py
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/utils/analyzer/SATestBuild.py?rev=148558&r1=148557&r2=148558&view=diff
==============================================================================
--- cfe/trunk/utils/analyzer/SATestBuild.py (original)
+++ cfe/trunk/utils/analyzer/SATestBuild.py Fri Jan 20 13:10:59 2012
@@ -72,7 +72,7 @@
# 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 @@
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");
More information about the cfe-commits
mailing list