You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
343 B
10 lines
343 B
# Comment directives with blank contents are fine.
|
|
|
|
RUN: echo 'foo' > %t.in
|
|
RUN: echo 'COM:' > %t.chk
|
|
RUN: echo 'CHECK: foo' >> %t.chk
|
|
RUN: echo ' COM: ' >> %t.chk
|
|
RUN: %ProtectFileCheckOutput FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 | FileCheck %s
|
|
|
|
CHECK: .chk:2:8: remark: CHECK: expected string found in input
|