]> granicus.if.org Git - clang/commitdiff
[Static Analyzer] Some tests do not turn on core checkers. Running the analyzers...
authorGabor Horvath <xazax.hun@gmail.com>
Fri, 24 Jul 2015 03:25:13 +0000 (03:25 +0000)
committerGabor Horvath <xazax.hun@gmail.com>
Fri, 24 Jul 2015 03:25:13 +0000 (03:25 +0000)
Differential Revision: http://reviews.llvm.org/D11432

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

test/Analysis/ObjCRetSigs.m
test/Analysis/PR2978.m
test/Analysis/dead-stores.m
test/Analysis/rdar-6540084.m

index b5a3e7cdbf126346e1b1c78c73ce6aadfaf27496..6ee83ec4d1051b8e1d29ef7c884af97c4407c52a 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -analyze -analyzer-checker=alpha.core -analyzer-checker=osx.cocoa.IncompatibleMethodTypes -verify -Wno-objc-root-class %s
+// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core -analyzer-checker=osx.cocoa.IncompatibleMethodTypes -verify -Wno-objc-root-class %s
 
 int printf(const char *, ...);
 
index 4684ae9639952d73fc4fe6babfe70f9a6e371978..8f76120ccbc629aeb75de74b598796b3904fcb26 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -analyze -analyzer-checker=alpha.core -analyzer-checker=alpha.osx.cocoa.Dealloc %s -verify
+// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core -analyzer-checker=alpha.osx.cocoa.Dealloc %s -verify
 
 // Tests for the checker which checks missing/extra ivar 'release' calls 
 // in dealloc.
index 13b28dcf5374eeb175b9fb502a12907b7ea21e0c..5ad2569cee71f4a1ae251750d47ce3f54c77aafc 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -analyze -analyzer-checker=alpha.core -analyzer-checker=deadcode.DeadStores,osx.cocoa.RetainCount -fblocks -verify -Wno-objc-root-class %s
+// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core -analyzer-checker=deadcode.DeadStores,osx.cocoa.RetainCount -fblocks -verify -Wno-objc-root-class %s
 // expected-no-diagnostics
 
 typedef signed char BOOL;
index e928710b387d505365ca31c16f229d2bd4a7c019..2119df5b9ef54a7d429c8fa419e7dcdc9454eb1e 100644 (file)
@@ -1,4 +1,4 @@
-// RUN: %clang_cc1 -analyze -analyzer-checker=alpha.core -analyzer-checker=deadcode.DeadStores -verify %s
+// RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.core -analyzer-checker=deadcode.DeadStores -verify %s
 //
 // This test exercises the live variables analysis (LiveVariables.cpp).
 // The case originally identified a non-termination bug.