Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / utils / lit / tests / Inputs / shtest-shell / continuations.txt
blob4872733b16abdac7f2cf5fea924fec8bb4e68807
1 RUN: echo 'foo' \
2 RUN:      'bar' >> %t.out
3 CHECK: foo bar
5 RUN: echo 'foo' \
6 RUN:      'bar' \
7 RUN:      'baz' >> %t.out
8 CHECK: foo bar baz
10 #                 v~~ intentional whitespace
11 RUN: echo 'foo'  \   
12 RUN:      'bar'  \ 
13 #                 ^ intentional whitespace
14 RUN:      'baz' >> %t.out
15 CHECK: foo bar baz
17 RUN: FileCheck -match-full-lines -input-file=%t.out %s