diff options
Diffstat (limited to 'test/FixIt/fixit-objc-message.m')
-rw-r--r-- | test/FixIt/fixit-objc-message.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/FixIt/fixit-objc-message.m b/test/FixIt/fixit-objc-message.m index 1fef3cc56d5ed..a3680e475ee2e 100644 --- a/test/FixIt/fixit-objc-message.m +++ b/test/FixIt/fixit-objc-message.m @@ -1,11 +1,11 @@ // Objective-C recovery // RUN: cp %s %t -// RUN: %clang_cc1 -pedantic -Wall -fixit -x objective-c %t || true +// RUN: not %clang_cc1 -pedantic -Wall -fixit -x objective-c %t // RUN: %clang_cc1 -fsyntax-only -pedantic -Wall -Werror -x objective-c %t // Objective-C++ recovery // RUN: cp %s %t -// RUN: %clang_cc1 -pedantic -Wall -fixit -x objective-c++ %t || true +// RUN: not %clang_cc1 -pedantic -Wall -fixit -x objective-c++ %t // RUN: %clang_cc1 -fsyntax-only -pedantic -Wall -Werror -x objective-c++ %t @interface A |