[cfe-commits] r160821 - /cfe/trunk/utils/analyzer/SATestBuild.py

Jordan Rose jordan_rose at apple.com
Thu Jul 26 15:32:00 PDT 2012


Author: jrose
Date: Thu Jul 26 17:31:59 2012
New Revision: 160821

URL: http://llvm.org/viewvc/llvm-project?rev=160821&view=rev
Log:
SATestBuild should not ask for non-existent checkers.

- "cocoa" was moved to "osx.cocoa" a long time ago.
- "cplusplus" would be a valid package except we don't have any C++ checkers.

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=160821&r1=160820&r2=160821&view=diff
==============================================================================
--- cfe/trunk/utils/analyzer/SATestBuild.py (original)
+++ cfe/trunk/utils/analyzer/SATestBuild.py Thu Jul 26 17:31:59 2012
@@ -72,7 +72,7 @@
 
 # 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"
+Checkers="experimental.security.taint,core,deadcode,security,unix,osx"
 
 Verbose = 1
 





More information about the cfe-commits mailing list