aboutsummaryrefslogtreecommitdiff
path: root/test/Rewriter/rewrite-protocol-qualified.mm
diff options
context:
space:
mode:
Diffstat (limited to 'test/Rewriter/rewrite-protocol-qualified.mm')
-rw-r--r--test/Rewriter/rewrite-protocol-qualified.mm13
1 files changed, 2 insertions, 11 deletions
diff --git a/test/Rewriter/rewrite-protocol-qualified.mm b/test/Rewriter/rewrite-protocol-qualified.mm
index e91c3db8616f..5f12010afd4e 100644
--- a/test/Rewriter/rewrite-protocol-qualified.mm
+++ b/test/Rewriter/rewrite-protocol-qualified.mm
@@ -1,5 +1,5 @@
-// RUN: %clang_cc1 -x objective-c++ -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp
-// RUN: FileCheck -check-prefix LP --input-file=%t-rw.cpp %s
+// RUN: %clang_cc1 -x objective-c++ -Wno-return-type -fblocks -fms-extensions -rewrite-objc %s -o %t-rw.cpp
+// RUN: %clang_cc1 -fsyntax-only -Wno-address-of-temporary -D"SEL=void*" -D"id=void*" -D"__declspec(X)=" %t-rw.cpp
// radar 7589414
@protocol NSPortDelegate;
@@ -30,12 +30,3 @@ void f() {
id a;
id b = bar((id <Proto>)a);
}
-
-// CHECK-LP: NSConnection /*<NSPortDelegate>*/ *conn = 0;
-
-// CHECK-LP: id /*<NSPortDelegate>*/ *idc = 0;
-
-// CHECK-LP: func(id/*<Proto1, Proto2>*/ inProxy);
-
-// CHECK-LP: bar((id /*<Proto>*/)a);
-