diff options
author | Anna Zaks <ganna@apple.com> | 2012-02-15 00:19:07 +0000 |
---|---|---|
committer | Anna Zaks <ganna@apple.com> | 2012-02-15 00:19:07 +0000 |
commit | f66035ec41766d232c37a58f67046cc0b4bb433b (patch) | |
tree | 3b17c9719be212baeadd2eb50f317fbdafd68554 | |
parent | ebc1d3261e42f45d693fffef5a01a570ef2e89cf (diff) |
[analyzer] Add the Malloc checker to the list of tested checkers.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@150535 91177308-0d34-0410-b5e6-96231b3b80d8
-rwxr-xr-x | utils/analyzer/SATestBuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/analyzer/SATestBuild.py b/utils/analyzer/SATestBuild.py index c2649a322f..4ba9a88380 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="experimental.security.taint,core,deadcode,cplusplus,security,unix,osx,cocoa,experimental.osx.cocoa.Containers,experimental.unix.cstring.BadSizeArg" +Checkers="experimental.security.taint,core,deadcode,cplusplus,security,unix,osx,cocoa,experimental.osx.cocoa.Containers,experimental.unix.cstring.BadSizeArg,experimental.unix.Malloc" Verbose = 1 |