diff options
Diffstat (limited to 'test/Frontend/cpp-output.c')
-rw-r--r-- | test/Frontend/cpp-output.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/Frontend/cpp-output.c b/test/Frontend/cpp-output.c index ee37f4cd68..e7a5ca6054 100644 --- a/test/Frontend/cpp-output.c +++ b/test/Frontend/cpp-output.c @@ -1,9 +1,9 @@ -// 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: grep '^int x; // comment' %t && -// RUN: grep '^x /\* comment \*/ x /\* comment \*/' %t && +// 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: grep '^int x; // comment' %t +// RUN: grep '^x /\* comment \*/ x /\* comment \*/' %t // RUN: true int x; // comment |