17 lines
652 B
Plaintext
17 lines
652 B
Plaintext
# Not using comment directives is always fine.
|
|
|
|
RUN: echo 'foo' > %t.in
|
|
RUN: echo 'CHECK: foo' > %t.chk
|
|
|
|
# Check the case of default comment prefixes.
|
|
RUN: %ProtectFileCheckOutput \
|
|
RUN: FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 | FileCheck %s
|
|
|
|
# Specifying non-default comment prefixes doesn't mean you have to use them.
|
|
# For example, they might be applied to an entire test suite via
|
|
# FILECHECK_OPTS or via a wrapper command or substitution.
|
|
RUN: %ProtectFileCheckOutput \
|
|
RUN: FileCheck -dump-input=never -vv -comment-prefixes=FOO %t.chk < %t.in 2>&1 | FileCheck %s
|
|
|
|
CHECK: .chk:1:8: remark: CHECK: expected string found in input
|