diff options
author | Jordan Rose <jordan_rose@apple.com> | 2013-06-03 23:00:19 +0000 |
---|---|---|
committer | Jordan Rose <jordan_rose@apple.com> | 2013-06-03 23:00:19 +0000 |
commit | 5e2b3a30a074c411fb63a3e21f68ea4618333c1c (patch) | |
tree | 285298570f7f81b660a24ff39c009916116881b7 /clang/test/Analysis/retain-release-path-notes.m | |
parent | 7ce598aeee556aa638ac19b2604a0a6b224df7f8 (diff) | |
download | bcm5719-llvm-5e2b3a30a074c411fb63a3e21f68ea4618333c1c.tar.gz bcm5719-llvm-5e2b3a30a074c411fb63a3e21f68ea4618333c1c.zip |
[analyzer] Enable the new edge algorithm by default.
...but don't yet migrate over the existing plist tests. Some of these
would be trivial to migrate; others could use a bit of inspection first.
In any case, though, the new edge algorithm seems to have proven itself,
and we'd like more coverage (and more usage) of it going forwards.
llvm-svn: 183165
Diffstat (limited to 'clang/test/Analysis/retain-release-path-notes.m')
-rw-r--r-- | clang/test/Analysis/retain-release-path-notes.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Analysis/retain-release-path-notes.m b/clang/test/Analysis/retain-release-path-notes.m index a3c681ae375..cd76abbc159 100644 --- a/clang/test/Analysis/retain-release-path-notes.m +++ b/clang/test/Analysis/retain-release-path-notes.m @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core,osx.coreFoundation.CFRetainRelease,osx.cocoa.ClassRelease,osx.cocoa.RetainCount -analyzer-store=region -analyzer-output=text -verify %s -// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core,osx.coreFoundation.CFRetainRelease,osx.cocoa.ClassRelease,osx.cocoa.RetainCount -analyzer-store=region -analyzer-output=plist-multi-file %s -o %t +// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core,osx.coreFoundation.CFRetainRelease,osx.cocoa.ClassRelease,osx.cocoa.RetainCount -analyzer-store=region -analyzer-output=plist-multi-file -analyzer-config path-diagnostics-alternate=false %s -o %t // RUN: FileCheck --input-file=%t %s /*** |