xref: /llvm-project/llvm/utils/lit/tests/Inputs/shtest-run-at-line/external-shell/line-continuation.txt (revision 31b373963f86e4fa8af9844c62b16c2f42354157)
1# These commands must run under both bash and windows cmd.exe (with GnuWin32
2# tools).
3
4# RUN: echo 'foo bar' \
5# RUN: | FileCheck %s
6# RUN: echo \
7# RUN: 'foo baz' \
8# RUN: | FileCheck %s
9# RUN: echo 'foo bar' \
10# RUN: | FileCheck %s
11
12# CHECK: foo bar
13