diff options
-rw-r--r-- | test/FixIt/typo.c | 2 | ||||
-rw-r--r-- | test/FixIt/typo.cpp | 2 | ||||
-rw-r--r-- | test/FixIt/typo.m | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/FixIt/typo.c b/test/FixIt/typo.c index 0777551780..d36e769ed0 100644 --- a/test/FixIt/typo.c +++ b/test/FixIt/typo.c @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s -// RUN: %clang_cc1 -fsyntax-only -fixit -o - | %clang_cc1 -fsyntax-only -pedantic -Werror -x c - +// RUN: %clang_cc1 -fsyntax-only -fixit -o - %s | %clang_cc1 -fsyntax-only -pedantic -Werror -x c - struct Point { float x, y; }; diff --git a/test/FixIt/typo.cpp b/test/FixIt/typo.cpp index 12bfc712f3..581cd25f9a 100644 --- a/test/FixIt/typo.cpp +++ b/test/FixIt/typo.cpp @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s -// RUN: %clang_cc1 -fsyntax-only -fixit -o - | %clang_cc1 -fsyntax-only -pedantic -Werror -x c++ - +// RUN: %clang_cc1 -fsyntax-only -fixit -o - %s | %clang_cc1 -fsyntax-only -pedantic -Werror -x c++ - namespace std { template<typename T> class basic_string { int find(const char *substr); diff --git a/test/FixIt/typo.m b/test/FixIt/typo.m index 251684949e..f88d315da7 100644 --- a/test/FixIt/typo.m +++ b/test/FixIt/typo.m @@ -1,5 +1,5 @@ // RUN: %clang_cc1 -fsyntax-only -verify %s -// RUN: %clang_cc1 -fsyntax-only -fixit -o - | %clang_cc1 -fsyntax-only -pedantic -Werror -x objective-c - +// RUN: %clang_cc1 -fsyntax-only -fixit -o - %s | %clang_cc1 -fsyntax-only -pedantic -Werror -x objective-c - @interface NSString @end |