Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1572)

Side by Side Diff: third_party/lit/tests/Inputs/shtest-shell/sequencing-0.txt

Issue 1663053003: [fusl] Add llvm's lit tool to third_party (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: move down a dir Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 # Check sequencing operations.
2 #
3 # RUN: echo "first-line" > %t.out && echo "second-line" >> %t.out
4 # RUN: FileCheck --check-prefix CHECK-AND < %t.out %s
5 #
6 # CHECK-AND: first-line
7 # CHECK-AND: second-line
8 #
9 # The false case of && is tested in sequencing-2.txt
10
11
12 # RUN: echo "first-line" > %t.out || echo "second-line" >> %t.out
13 # RUN: FileCheck --check-prefix CHECK-OR-1 < %t.out %s
14 #
15 # CHECK-OR-1: first-line
16 # CHECK-OR-1-NOT: second-line
17
18 # RUN: false || echo "second-line" > %t.out
19 # RUN: FileCheck --check-prefix CHECK-OR-2 < %t.out %s
20 #
21 # CHECK-OR-2: second-line
22
23
24 # RUN: echo "first-line" > %t.out; echo "second-line" >> %t.out
25 # RUN: FileCheck --check-prefix CHECK-SEQ < %t.out %s
26 #
27 # CHECK-SEQ: first-line
28 # CHECK-SEQ: second-line
OLDNEW
« no previous file with comments | « third_party/lit/tests/Inputs/shtest-shell/redirects.txt ('k') | third_party/lit/tests/Inputs/shtest-shell/sequencing-1.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698