diff options
author | Ted Kremenek <kremenek@apple.com> | 2012-09-10 18:38:43 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2012-09-10 18:38:43 +0000 |
commit | fc57cdf5b87c473501c8af9421c93714bf05c349 (patch) | |
tree | 4355bc92d76fab588e2432a35c8dfbbf0502fc9b | |
parent | 400f7ef8717c2ce8511ab76adbed888816b66de5 (diff) | |
download | bcm5719-llvm-fc57cdf5b87c473501c8af9421c93714bf05c349.tar.gz bcm5719-llvm-fc57cdf5b87c473501c8af9421c93714bf05c349.zip |
As a debugging aid to unbreak the buildbots, cat the plist files so I can view them on different builders.
llvm-svn: 163529
-rw-r--r-- | clang/test/Analysis/retain-release.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Analysis/retain-release.m b/clang/test/Analysis/retain-release.m index f2149398045..6d2063f366f 100644 --- a/clang/test/Analysis/retain-release.m +++ b/clang/test/Analysis/retain-release.m @@ -1,8 +1,8 @@ // RUN: rm -f $t.objc.plist $t.objcpp.plist // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core,osx.coreFoundation.CFRetainRelease,osx.cocoa.ClassRelease,osx.cocoa.RetainCount -analyzer-store=region -fblocks -verify -Wno-objc-root-class %s -analyzer-output=plist -o %t.objc.plist // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -analyze -analyzer-checker=core,osx.coreFoundation.CFRetainRelease,osx.cocoa.ClassRelease,osx.cocoa.RetainCount -analyzer-store=region -fblocks -verify -x objective-c++ -std=gnu++98 -Wno-objc-root-class %s -analyzer-output=plist -o %t.objcpp.plist -// RUN: FileCheck --input-file=%t.objc.plist %s -// RUN: FileCheck --input-file=%t.objcpp.plist %s +// RUN: cat $t.objc.plist ; FileCheck --input-file=%t.objc.plist %s +// RUN: cat $t.objcpp.plist ; FileCheck --input-file=%t.objcpp.plist %s #if __has_feature(attribute_ns_returns_retained) #define NS_RETURNS_RETAINED __attribute__((ns_returns_retained)) |