xref: /llvm-project/llvm/test/FileCheck/comment/unused-check-prefixes.txt (revision a1fd188223d9c9b404dccd3511fe8b63ef022a13)
1# Comment directives do not suppress diagnostics for unused check prefixes.
2
3RUN: echo 'foo'       >  %t.in
4RUN: echo 'COM: foo'  >  %t.chk
5RUN: echo 'RUN: echo' >> %t.chk
6RUN: %ProtectFileCheckOutput not FileCheck %t.chk < %t.in 2>&1 | FileCheck %s
7
8CHECK: error: no check strings found with prefix 'CHECK:'
9