aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-01-01 17:23:17 +0000
committerDouglas Gregor <dgregor@apple.com>2010-01-01 17:23:17 +0000
commit736fc1b5884158387bfc49b8958ebc07b526d1da (patch)
tree5def3645a47c3caf277678e8f3f832aab0ca45a3
parent13b2f92184bb7a310b800dd7e22c320361a72c4d (diff)
Fix typo test RUN lines
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@92396 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/FixIt/typo.c2
-rw-r--r--test/FixIt/typo.cpp2
-rw-r--r--test/FixIt/typo.m2
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