You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
538 B
21 lines
538 B
; RUN: %ProtectFileCheckOutput \
|
|
; RUN: not FileCheck -input-file %s %s -check-prefix=FOO -check-prefix=BAR \
|
|
; RUN: 2>&1 | FileCheck %s
|
|
;
|
|
; RUN: %ProtectFileCheckOutput \
|
|
; RUN: not FileCheck -input-file %s %s -check-prefixes=FOO,BAR 2>&1 \
|
|
; RUN: | FileCheck %s
|
|
;
|
|
; RUN: %ProtectFileCheckOutput \
|
|
; RUN: not FileCheck -input-file %s %s -check-prefixes=BAR,FOO 2>&1 \
|
|
; RUN: | FileCheck %s
|
|
|
|
BAR
|
|
bar
|
|
foo
|
|
; BAR: ba{{z}}
|
|
; FOO: fo{{o}}
|
|
|
|
; CHECK: {{error: BAR: expected string not found in input}}
|
|
; CHECK-NEXT: {{B}}AR: ba{{[{][{]z[}][}]}}
|