[Instrumentation] Fix a warning
[llvm-project.git] / llvm / test / FileCheck / invalid-regex.txt
blobb5b2986cd67cc863f2ec6411e90a4705b0ba9ff1
1 # This file contains invalid regular expressions in variable patterns. Make
2 # sure a proper error message is presented
3 //------------------------------------------------
4 RUN: %ProtectFileCheckOutput \
5 RUN: not FileCheck -check-prefix=CHECK-STAR %s < /dev/null 2>&1 | \
6 RUN:   FileCheck -check-prefix=ERR-STAR %s
8 CHECK-STAR: [[BOOM:*]]
9 ERR-STAR: error: invalid regex: repetition-operator operand invalid
11 //------------------------------------------------
12 RUN: %ProtectFileCheckOutput \
13 RUN: not FileCheck -check-prefix=CHECK-PLUS %s < /dev/null 2>&1 | \
14 RUN:   FileCheck -check-prefix=ERR-PLUS %s
16 CHECK-PLUS: [[BOOM:+]]
17 ERR-PLUS: error: invalid regex: repetition-operator operand invalid
19 //------------------------------------------------