xref: /llvm-project/llvm/utils/lit/tests/Inputs/shtest-shell/continuations.txt (revision 28412d1800e391c5ba8e7607bb15c74b106d581b)
1RUN: echo 'foo' \
2RUN:      'bar' >> %t.out
3CHECK: foo bar
4
5RUN: echo 'foo' \
6RUN:      'bar' \
7RUN:      'baz' >> %t.out
8CHECK: foo bar baz
9
10#                 v~~ intentional whitespace
11RUN: echo 'foo'  \
12RUN:      'bar'  \
13#                 ^ intentional whitespace
14RUN:      'baz' >> %t.out
15CHECK: foo bar baz
16
17RUN: FileCheck -match-full-lines -input-file=%t.out %s
18