Lines Matching full:line
3 # RUN: echo "first-line" > %t.out && echo "second-line" >> %t.out
6 # CHECK-AND: first-line
7 # CHECK-AND: second-line
12 # RUN: echo "first-line" > %t.out || echo "second-line" >> %t.out
15 # CHECK-OR-1: first-line
16 # CHECK-OR-1-NOT: second-line
18 # RUN: false || echo "second-line" > %t.out
21 # CHECK-OR-2: second-line
24 # RUN: echo "first-line" > %t.out; echo "second-line" >> %t.out
27 # CHECK-SEQ: first-line
28 # CHECK-SEQ: second-line