xref: /llvm-project/llvm/test/FileCheck/check-multiple-prefixes-mixed.txt (revision fd557cb01f8ddf21202b3330f4d58d3c02912b72)
1// RUN: FileCheck -check-prefix=B -check-prefix=BOTH -input-file %s %s
2// RUN: FileCheck -check-prefix=A -check-prefix=BOTH -input-file %s %s
3// RUN: FileCheck -check-prefixes=B,BOTH -input-file %s %s
4// RUN: FileCheck -check-prefixes=A,BOTH -input-file %s %s
5
6; A: {{a}}aaaaa
7; B: {{b}}bbbb
8; BOTH: {{q}}qqqqq
9aaaaaa
10bbbbb
11qqqqqq
12ccccc
13