From: Ted Kremenek Date: Mon, 10 Sep 2012 18:38:43 +0000 (+0000) Subject: As a debugging aid to unbreak the buildbots, cat the plist files so I can view them... X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=776da9e05efadf86e4d7cc177d8ff2b1a0953319;p=clang As a debugging aid to unbreak the buildbots, cat the plist files so I can view them on different builders. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163529 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/retain-release.m b/test/Analysis/retain-release.m index f214939804..6d2063f366 100644 --- a/test/Analysis/retain-release.m +++ b/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))