aboutsummaryrefslogtreecommitdiff
path: root/clang/test/Frontend/cpp-output.c
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-12-15 22:01:24 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-12-15 22:01:24 +0000
commit5618e98f3345d87076550a56ebe571bf85e6d34e (patch)
treee4b61cb0c86ce3e96bcb9ab7b72da5b0ba921c2d /clang/test/Frontend/cpp-output.c
parente44756d7c2f3423dd2610e33dcbc30762877c3ed (diff)
downloadllvm-5618e98f3345d87076550a56ebe571bf85e6d34e.zip
llvm-5618e98f3345d87076550a56ebe571bf85e6d34e.tar.gz
llvm-5618e98f3345d87076550a56ebe571bf85e6d34e.tar.bz2
Update tests to use %clang instead of 'clang', and forcibly disable use of '
clang ' or ' clang -cc1 ' or ' clang-cc ' in test lines (by substituting them to garbage). llvm-svn: 91460
Diffstat (limited to 'clang/test/Frontend/cpp-output.c')
-rw-r--r--clang/test/Frontend/cpp-output.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/Frontend/cpp-output.c b/clang/test/Frontend/cpp-output.c
index 9a6fc9b..e44095b 100644
--- a/clang/test/Frontend/cpp-output.c
+++ b/clang/test/Frontend/cpp-output.c
@@ -1,7 +1,7 @@
-// RUN: clang -E -o %t -C %s
+// RUN: %clang -E -o %t -C %s
// RUN: grep '^int x; // comment' %t
// RUN: grep '^x x' %t
-// RUN: clang -E -o %t -CC %s
+// RUN: %clang -E -o %t -CC %s
// RUN: grep '^int x; // comment' %t
// RUN: grep '^x /\* comment \*/ x /\* comment \*/' %t