brintos

brintos / llvm-project-archived public Read only

0
0
Text · 373 B · 4872733 Raw
18 lines · plain
1RUN: echo 'foo' \2RUN:      'bar' >> %t.out3CHECK: foo bar4 5RUN: echo 'foo' \6RUN:      'bar' \7RUN:      'baz' >> %t.out8CHECK: foo bar baz9 10#                 v~~ intentional whitespace11RUN: echo 'foo'  \   12RUN:      'bar'  \ 13#                 ^ intentional whitespace14RUN:      'baz' >> %t.out15CHECK: foo bar baz16 17RUN: FileCheck -match-full-lines -input-file=%t.out %s18