brintos

brintos / llvm-project-archived public Read only

0
0
Text · 742 B · 3650f95 Raw
17 lines · plain
1# Comment prefixes are not recognized at ends of words.2 3RUN: echo 'foo'                 >  %t.in4RUN: echo 'bar'                 >> %t.in5RUN: echo 'foo'                 >> %t.in6RUN: echo 'bar'                 >> %t.in7RUN: echo 'FOO-COM: CHECK: foo' >  %t.chk8RUN: echo 'RUN_COM: CHECK: bar' >> %t.chk9RUN: echo 'RUN3COM: CHECK: foo' >> %t.chk10RUN: echo ' COMRUN: CHECK: bar' >> %t.chk11RUN: %ProtectFileCheckOutput FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 | FileCheck %s12 13CHECK: .chk:1:17: remark: CHECK: expected string found in input14CHECK: .chk:2:17: remark: CHECK: expected string found in input15CHECK: .chk:3:17: remark: CHECK: expected string found in input16CHECK: .chk:4:17: remark: CHECK: expected string found in input17