]> granicus.if.org Git - clang/commitdiff
[Analyzer] Add nullability to the list of tested checkers in SATestBuild
authorGeorge Karpenkov <ekarpenkov@apple.com>
Sat, 30 Sep 2017 00:05:24 +0000 (00:05 +0000)
committerGeorge Karpenkov <ekarpenkov@apple.com>
Sat, 30 Sep 2017 00:05:24 +0000 (00:05 +0000)
Differential Revision: https://reviews.llvm.org/D38162

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@314572 91177308-0d34-0410-b5e6-96231b3b80d8

utils/analyzer/SATestBuild.py

index a053f5fb013bd4ce1d941083d1ba84ba4f783e9e..c735996c3b25ab40913e16642f2d64fd45d72b3e 100755 (executable)
@@ -178,7 +178,18 @@ PatchfileName = "changes_for_analyzer.patch"
 # The list of checkers used during analyzes.
 # Currently, consists of all the non-experimental checkers, plus a few alpha
 # checkers we don't want to regress on.
-Checkers="alpha.unix.SimpleStream,alpha.security.taint,cplusplus.NewDeleteLeaks,core,cplusplus,deadcode,security,unix,osx"
+Checkers=",".join([
+    "alpha.unix.SimpleStream",
+    "alpha.security.taint",
+    "cplusplus.NewDeleteLeaks",
+    "core",
+    "cplusplus",
+    "deadcode",
+    "security",
+    "unix",
+    "osx",
+    "nullability"
+])
 
 Verbose = 1