xref: /llvm-project/llvm/test/FileCheck/missspelled-directive.txt (revision 0dbaff2a49224b1d3089325d9d5fc9f56385c142)
1RUN: %ProtectFileCheckOutput not FileCheck --check-prefix=P1 %s 2>&1 | FileCheck --check-prefix=CHECK1 %s
2RUN: %ProtectFileCheckOutput not FileCheck --check-prefix=P2 %s 2>&1 | FileCheck --check-prefix=CHECK2 %s
3RUN: %ProtectFileCheckOutput not FileCheck --check-prefix=P3 %s 2>&1 | FileCheck --check-prefix=CHECK3 %s
4RUN: %ProtectFileCheckOutput not FileCheck --check-prefix=P4 %s 2>&1 | FileCheck --check-prefix=CHECK4 %s
5RUN: %ProtectFileCheckOutput not FileCheck --check-prefix=P5 %s 2>&1 | FileCheck --check-prefix=CHECK5 %s
6RUN: %ProtectFileCheckOutput not FileCheck --check-prefix=P6 %s 2>&1 | FileCheck --check-prefix=CHECK6 %s
7RUN: %ProtectFileCheckOutput not FileCheck --check-prefix=P7 %s 2>&1 | FileCheck --check-prefix=CHECK7 %s
8
9P1_LABEL: foo
10CHECK1: error: misspelled directive 'P1_LABEL:'
11
12P2_NEXT: foo
13CHECK2: error: misspelled directive 'P2_NEXT:'
14
15P3_NOT: foo
16CHECK3: error: misspelled directive 'P3_NOT:'
17
18P4_COUNT-2: foo
19CHECK4: error: misspelled directive 'P4_COUNT-2:'
20
21P5_SAME: foo
22CHECK5: error: misspelled directive 'P5_SAME:'
23
24P6_EMPTY: foo
25CHECK6: error: misspelled directive 'P6_EMPTY:'
26
27P7_DAG: foo
28CHECK7: error: misspelled directive 'P7_DAG:'
29