diff options
Diffstat (limited to 'test/FileCheck/check-multiple-prefixes-mixed.txt')
-rw-r--r-- | test/FileCheck/check-multiple-prefixes-mixed.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test/FileCheck/check-multiple-prefixes-mixed.txt b/test/FileCheck/check-multiple-prefixes-mixed.txt new file mode 100644 index 0000000..cd3b70a --- /dev/null +++ b/test/FileCheck/check-multiple-prefixes-mixed.txt @@ -0,0 +1,10 @@ +// RUN: FileCheck -check-prefix=B -check-prefix=BOTH -input-file %s %s +// RUN: FileCheck -check-prefix=A -check-prefix=BOTH -input-file %s %s + +; A: {{a}}aaaaa +; B: {{b}}bbbb +; BOTH: {{q}}qqqqq +aaaaaa +bbbbb +qqqqqq +ccccc |