aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-09-10 19:13:08 +0000
committerTed Kremenek <kremenek@apple.com>2012-09-10 19:13:08 +0000
commitac0bc913b3d681a5fb0781c325b221658dc6854c (patch)
tree1935ce637ad0c56e9021704b9887eb15839d2438
parent15f9f74f0cc7c2923b1977c6d33059251e6df204 (diff)
downloadclang-ac0bc913b3d681a5fb0781c325b221658dc6854c.tar.gz
Correctly 'cat' out test files.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@163534 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Analysis/retain-release.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Analysis/retain-release.m b/test/Analysis/retain-release.m
index 6d2063f366..7b417ecf92 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: cat $t.objc.plist ; FileCheck --input-file=%t.objc.plist %s
-// RUN: cat $t.objcpp.plist ; 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))