brintos

brintos / llvm-project-archived public Read only

0
0
Text · 652 B · 5dadc8f Raw
17 lines · plain
1# Not using comment directives is always fine.2 3RUN: echo 'foo'        > %t.in4RUN: echo 'CHECK: foo' > %t.chk5 6# Check the case of default comment prefixes.7RUN: %ProtectFileCheckOutput \8RUN: FileCheck -dump-input=never -vv %t.chk < %t.in 2>&1 | FileCheck %s9 10# Specifying non-default comment prefixes doesn't mean you have to use them.11# For example, they might be applied to an entire test suite via12# FILECHECK_OPTS or via a wrapper command or substitution.13RUN: %ProtectFileCheckOutput \14RUN: FileCheck -dump-input=never -vv -comment-prefixes=FOO %t.chk < %t.in 2>&1 | FileCheck %s15 16CHECK: .chk:1:8: remark: CHECK: expected string found in input17