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