summaryrefslogtreecommitdiffstats
path: root/clang/test/Lexer/counter.c
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/Lexer/counter.c')
-rw-r--r--clang/test/Lexer/counter.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/Lexer/counter.c b/clang/test/Lexer/counter.c
index 9b2c2c7434f..044570f8886 100644
--- a/clang/test/Lexer/counter.c
+++ b/clang/test/Lexer/counter.c
@@ -1,16 +1,16 @@
// __COUNTER__ support: rdar://4329310
-// RUN: clang -E %s > %t &&
+// RUN: clang -E %s > %t
#define PASTE2(x,y) x##y
#define PASTE1(x,y) PASTE2(x,y)
#define UNIQUE(x) PASTE1(x,__COUNTER__)
-// RUN: grep "A: 0" %t &&
+// RUN: grep "A: 0" %t
A: __COUNTER__
-// RUN: grep "B: foo1" %t &&
+// RUN: grep "B: foo1" %t
B: UNIQUE(foo);
-// RUN: grep "C: foo2" %t &&
+// RUN: grep "C: foo2" %t
C: UNIQUE(foo);
// RUN: grep "D: 3" %t
D: __COUNTER__
OpenPOWER on IntegriCloud