diff options
author | Ted Kremenek <kremenek@apple.com> | 2011-08-05 21:53:47 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2011-08-05 21:53:47 +0000 |
commit | 9dd9b882aed2b9b63d90f9ebe7a04a8f24982f1e (patch) | |
tree | a28d428edf4f307b4eeec11c2592aa0d8dcd3ae0 /clang/test | |
parent | cbf1737ea18e60cf20ef7688e17bc4ec4abbe1f6 (diff) | |
download | bcm5719-llvm-9dd9b882aed2b9b63d90f9ebe7a04a8f24982f1e.tar.gz bcm5719-llvm-9dd9b882aed2b9b63d90f9ebe7a04a8f24982f1e.zip |
Make test/SemaObjC/qualified-protocol-method-conflicts.m always fail and mark it XFAIL. This is a stop gap until the output of the test is deterministic.
llvm-svn: 136984
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/SemaObjC/qualified-protocol-method-conflicts.m | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/SemaObjC/qualified-protocol-method-conflicts.m b/clang/test/SemaObjC/qualified-protocol-method-conflicts.m index 676a34b7384..06bf32be3e9 100644 --- a/clang/test/SemaObjC/qualified-protocol-method-conflicts.m +++ b/clang/test/SemaObjC/qualified-protocol-method-conflicts.m @@ -1,5 +1,10 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s // rdar://6191214 +// XFAIL: * + +// *** Currently marked XFAIL since the output is nondeterministic. *** + +int x = "hello"; // *** ADDED TO MAKE THIS TEST ALWAYS FAIL. WILL REMOVE WHEN OUTPUT IS STABLE. *** @protocol Xint -(void) setX: (int) arg0; // expected-warning 2 {{conflicting parameter types in declaration of 'setX:': 'float' vs 'int'}} \ |