bolt/deps/llvm-18.1.8/llvm/utils/lit/tests/Inputs/shtest-shell/continuations.txt

18 lines
373 B
Text
Raw Normal View History

2025-02-14 19:21:04 +01:00
RUN: echo 'foo' \
RUN: 'bar' >> %t.out
CHECK: foo bar
RUN: echo 'foo' \
RUN: 'bar' \
RUN: 'baz' >> %t.out
CHECK: foo bar baz
# v~~ intentional whitespace
RUN: echo 'foo' \
RUN: 'bar' \
# ^ intentional whitespace
RUN: 'baz' >> %t.out
CHECK: foo bar baz
RUN: FileCheck -match-full-lines -input-file=%t.out %s