3 $|=1; # outherwise things get mixed up in output
7 @INC = qw '../lib ../ext/re';
9 skip_all_without_unicode_tables();
10 eval 'require Config'; # assume defaults if this fails
14 use open qw(:utf8 :std);
17 ## If the markers used are changed (search for "MARKER1" in regcomp.c),
18 ## update only these two regexs, and leave the {#} in the @death/@warning
19 ## arrays below. The {#} is a meta-marker -- it marks where the marker should
22 ## Returns empty string if that is what is expected. Otherwise, handles
23 ## either a scalar, turning it into a single element array; or a ref to an
24 ## array, adjusting each element. If called in array context, returns an
25 ## array, otherwise the join of all elements
28 my $expect_ref = shift;
29 return "" if $expect_ref eq "";
32 if (ref $expect_ref) {
33 @expect = @$expect_ref;
36 @expect = $expect_ref;
39 foreach my $element (@expect) {
40 $element =~ s/{\#}/in regex; marked by <-- HERE in/;
41 $element =~ s/{\#}/ <-- HERE /;
44 return wantarray ? @expect : join "", @expect;
47 ## Because we don't "use utf8" in this file, we need to do some extra legwork
48 ## for the utf8 tests: Prepend 'use utf8' to the pattern, and mark the strings
49 ## to check against as UTF-8, but for this all to work properly, the character
50 ## 'ネ' (U+30CD) is required in each pattern somewhere as a marker.
52 ## This also creates a second variant of the tests to check if the
53 ## latin1 error messages are working correctly. Because we don't 'use utf8',
54 ## we can't tell if something is UTF-8 or Latin1, so you need the suffix
55 ## '; no latin1' to not have the second variant.
57 my $utf8 = "\x{30cd}";
62 for (my $i = 0; $i < @_; $i += 2) {
65 my $l1_pat = $pat =~ s/$utf8/$l1/gr;
67 $pat = "use utf8; $pat";
70 $l1_msg = [ map { s/$utf8/$l1/gr } @$msg ];
71 @$msg = map { my $c = $_; utf8::decode($c); $c } @$msg;
74 $l1_msg = $msg =~ s/$utf8/$l1/gr;
77 push @ret, $pat => $msg;
79 push @ret, $l1_pat => $l1_msg unless $l1_pat =~ /#no latin1/;
84 my $inf_m1 = ($Config::Config{reg_infty} || 32767) - 1;
85 my $inf_p1 = $inf_m1 + 2;
87 my $B_hex = sprintf("\\x%02X", ord "B");
88 my $low_mixed_alpha = ('A' lt 'a') ? 'A' : 'a';
89 my $high_mixed_alpha = ('A' lt 'a') ? 'a' : 'A';
90 my $low_mixed_digit = ('A' lt '0') ? 'A' : '0';
91 my $high_mixed_digit = ('A' lt '0') ? '0' : 'A';
93 my $colon_hex = sprintf "%02X", ord(":");
94 my $tab_hex = sprintf "%02X", ord("\t");
97 ## Key-value pairs of code/error of code that should have fatal errors.
101 '/[[=foo=]]/' => 'POSIX syntax [= =] is reserved for future extensions {#} m/[[=foo=]{#}]/',
102 '/[[=a]=]]/' => 'POSIX syntax [= =] is reserved for future extensions {#} m/[[=a]=]{#}]/',
103 '/[[.a].]]/' => 'POSIX syntax [. .] is reserved for future extensions {#} m/[[.a].]{#}]/',
105 '/(?<= .*)/' => 'Variable length lookbehind not implemented in regex m/(?<= .*)/',
107 '/(?<= x{1000})/' => 'Lookbehind longer than 255 not implemented in regex m/(?<= x{1000})/',
109 '/(?@)/' => 'Sequence (?@...) not implemented {#} m/(?@{#})/',
111 '/(?{ 1/' => 'Missing right curly or square bracket',
113 '/(?(1x))/' => 'Switch condition not recognized {#} m/(?(1x{#}))/',
114 '/(?(1x(?#)))/'=> 'Switch condition not recognized {#} m/(?(1x{#}(?#)))/',
116 '/(?(1)/' => 'Switch (?(condition)... not terminated {#} m/(?(1){#}/',
117 '/(?(1)x/' => 'Switch (?(condition)... not terminated {#} m/(?(1)x{#}/',
118 '/(?(1)x|y/' => 'Switch (?(condition)... not terminated {#} m/(?(1)x|y{#}/',
119 '/(?(1)x|y|z)/' => 'Switch (?(condition)... contains too many branches {#} m/(?(1)x|y|{#}z)/',
121 '/(?(x)y|x)/' => 'Unknown switch condition (?(...)) {#} m/(?(x{#})y|x)/',
122 '/(?(??{}))/' => 'Unknown switch condition (?(...)) {#} m/(?(?{#}?{}))/',
123 '/(?(?[]))/' => 'Unknown switch condition (?(...)) {#} m/(?(?{#}[]))/',
125 '/(?/' => 'Sequence (? incomplete {#} m/(?{#}/',
127 '/(?;x/' => 'Sequence (?;...) not recognized {#} m/(?;{#}x/',
128 '/(?<;x/' => 'Group name must start with a non-digit word character {#} m/(?<;{#}x/',
129 '/(?\ix/' => 'Sequence (?\...) not recognized {#} m/(?\{#}ix/',
130 '/(?\mx/' => 'Sequence (?\...) not recognized {#} m/(?\{#}mx/',
131 '/(?\:x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}:x/',
132 '/(?\=x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}=x/',
133 '/(?\!x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}!x/',
134 '/(?\<=x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}<=x/',
135 '/(?\<!x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}<!x/',
136 '/(?\>x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}>x/',
137 '/(?^-i:foo)/' => 'Sequence (?^-...) not recognized {#} m/(?^-{#}i:foo)/',
138 '/(?^-i)foo/' => 'Sequence (?^-...) not recognized {#} m/(?^-{#}i)foo/',
139 '/(?^d:foo)/' => 'Sequence (?^d...) not recognized {#} m/(?^d{#}:foo)/',
140 '/(?^d)foo/' => 'Sequence (?^d...) not recognized {#} m/(?^d{#})foo/',
141 '/(?^lu:foo)/' => 'Regexp modifiers "l" and "u" are mutually exclusive {#} m/(?^lu{#}:foo)/',
142 '/(?^lu)foo/' => 'Regexp modifiers "l" and "u" are mutually exclusive {#} m/(?^lu{#})foo/',
143 '/(?da:foo)/' => 'Regexp modifiers "d" and "a" are mutually exclusive {#} m/(?da{#}:foo)/',
144 '/(?lil:foo)/' => 'Regexp modifier "l" may not appear twice {#} m/(?lil{#}:foo)/',
145 '/(?aaia:foo)/' => 'Regexp modifier "a" may appear a maximum of twice {#} m/(?aaia{#}:foo)/',
146 '/(?i-l:foo)/' => 'Regexp modifier "l" may not appear after the "-" {#} m/(?i-l{#}:foo)/',
148 '/((x)/' => 'Unmatched ( {#} m/({#}(x)/',
149 '/{(}/' => 'Unmatched ( {#} m/{({#}}/', # [perl #127599]
151 "/x{$inf_p1}/" => "Quantifier in {,} bigger than $inf_m1 {#} m/x{{#}$inf_p1}/",
154 '/x**/' => 'Nested quantifiers {#} m/x**{#}/',
156 '/x[/' => 'Unmatched [ {#} m/x[{#}/',
158 '/*/', => 'Quantifier follows nothing {#} m/*{#}/',
160 '/\p{x/' => 'Missing right brace on \p{} {#} m/\p{{#}x/',
162 '/[\p{x]/' => 'Missing right brace on \p{} {#} m/[\p{{#}x]/',
164 '/(x)\2/' => 'Reference to nonexistent group {#} m/(x)\2{#}/',
166 '/\g/' => 'Unterminated \g... pattern {#} m/\g{#}/',
167 '/\g{1/' => 'Unterminated \g{...} pattern {#} m/\g{1{#}/',
169 'my $m = "\\\"; $m =~ $m', => 'Trailing \ in regex m/\/',
171 '/\x{1/' => 'Missing right brace on \x{} {#} m/\x{1{#}/',
172 '/\x{X/' => 'Missing right brace on \x{} {#} m/\x{{#}X/',
174 '/[\x{X]/' => 'Missing right brace on \x{} {#} m/[\x{{#}X]/',
175 '/[\x{A]/' => 'Missing right brace on \x{} {#} m/[\x{A{#}]/',
177 '/\o{1/' => 'Missing right brace on \o{ {#} m/\o{1{#}/',
178 '/\o{X/' => 'Missing right brace on \o{ {#} m/\o{{#}X/',
180 '/[\o{X]/' => 'Missing right brace on \o{ {#} m/[\o{{#}X]/',
181 '/[\o{7]/' => 'Missing right brace on \o{ {#} m/[\o{7{#}]/',
183 '/[[:barf:]]/' => 'POSIX class [:barf:] unknown {#} m/[[:barf:]{#}]/',
185 '/[[=barf=]]/' => 'POSIX syntax [= =] is reserved for future extensions {#} m/[[=barf=]{#}]/',
187 '/[[.barf.]]/' => 'POSIX syntax [. .] is reserved for future extensions {#} m/[[.barf.]{#}]/',
189 '/[z-a]/' => 'Invalid [] range "z-a" {#} m/[z-a{#}]/',
191 '/\p/' => 'Empty \p {#} m/\p{#}/',
192 '/\P/' => 'Empty \P {#} m/\P{#}/',
193 '/\p{}/' => 'Empty \p{} {#} m/\p{{#}}/',
194 '/\P{}/' => 'Empty \P{} {#} m/\P{{#}}/',
196 '/a\b{cde/' => 'Missing right brace on \b{} {#} m/a\b{{#}cde/',
197 '/a\B{cde/' => 'Missing right brace on \B{} {#} m/a\B{{#}cde/',
199 '/\b{}/' => 'Empty \b{} {#} m/\b{}{#}/',
200 '/\B{}/' => 'Empty \B{} {#} m/\B{}{#}/',
202 '/\b{gc}/' => "'gc' is an unknown bound type {#} m/\\b{gc{#}}/",
203 '/\B{gc}/' => "'gc' is an unknown bound type {#} m/\\B{gc{#}}/",
205 '/(?[[[::]]])/' => "Syntax error in (?[...]) in regex m/(?[[[::]]])/",
206 '/(?[[[:w:]]])/' => "Syntax error in (?[...]) in regex m/(?[[[:w:]]])/",
207 '/(?[[:w:]])/' => "",
208 '/[][[:alpha:]]' => "", # [perl #127581]
209 '/(?[a])/' => 'Unexpected character {#} m/(?[a{#}])/',
210 '/(?[ + \t ])/' => 'Unexpected binary operator \'+\' with no preceding operand {#} m/(?[ +{#} \t ])/',
211 '/(?[ \cK - ( + \t ) ])/' => 'Unexpected binary operator \'+\' with no preceding operand {#} m/(?[ \cK - ( +{#} \t ) ])/',
212 '/(?[ \cK ( \t ) ])/' => 'Unexpected \'(\' with no preceding operator {#} m/(?[ \cK ({#} \t ) ])/',
213 '/(?[ \cK \t ])/' => 'Operand with no preceding operator {#} m/(?[ \cK \t{#} ])/',
214 '/(?[ \0004 ])/' => 'Need exactly 3 octal digits {#} m/(?[ \0004 {#}])/',
215 '/(?[ \05 ])/' => 'Need exactly 3 octal digits {#} m/(?[ \05 {#}])/',
216 '/(?[ \o{1038} ])/' => 'Non-octal character {#} m/(?[ \o{1038{#}} ])/',
217 '/(?[ \o{} ])/' => 'Number with no digits {#} m/(?[ \o{}{#} ])/',
218 '/(?[ \x{defg} ])/' => 'Non-hex character {#} m/(?[ \x{defg{#}} ])/',
219 '/(?[ \xabcdef ])/' => 'Use \\x{...} for more than two hex characters {#} m/(?[ \xabc{#}def ])/',
220 '/(?[ \x{} ])/' => 'Number with no digits {#} m/(?[ \x{}{#} ])/',
221 '/(?[ \cK + ) ])/' => 'Unexpected \')\' {#} m/(?[ \cK + ){#} ])/',
222 '/(?[ \cK + ])/' => 'Incomplete expression within \'(?[ ])\' {#} m/(?[ \cK + {#}])/',
223 '/(?[ ( ) ])/' => 'Incomplete expression within \'(?[ ])\' {#} m/(?[ ( ) {#}])/',
224 '/(?[[0]+()+])/' => 'Incomplete expression within \'(?[ ])\' {#} m/(?[[0]+()+{#}])/',
225 '/(?[ \p{foo} ])/' => 'Can\'t find Unicode property definition "foo" {#} m/(?[ \p{foo}{#} ])/',
226 '/(?[ \p{ foo = bar } ])/' => 'Can\'t find Unicode property definition "foo = bar" {#} m/(?[ \p{ foo = bar }{#} ])/',
227 '/(?[ \8 ])/' => 'Unrecognized escape \8 in character class {#} m/(?[ \8{#} ])/',
228 '/(?[ \t ]/' => 'Syntax error in (?[...]) in regex m/(?[ \t ]/',
229 '/(?[ [ \t ]/' => 'Syntax error in (?[...]) in regex m/(?[ [ \t ]/',
230 '/(?[ \t ] ]/' => 'Syntax error in (?[...]) in regex m/(?[ \t ] ]/',
231 '/(?[ [ ] ]/' => 'Syntax error in (?[...]) in regex m/(?[ [ ] ]/',
232 '/(?[ \t + \e # This was supposed to be a comment ])/' => 'Syntax error in (?[...]) in regex m/(?[ \t + \e # This was supposed to be a comment ])/',
233 '/(?[ ])/' => 'Incomplete expression within \'(?[ ])\' {#} m/(?[ {#}])/',
234 'm/(?[[a-\d]])/' => 'False [] range "a-\d" {#} m/(?[[a-\d{#}]])/',
235 'm/(?[[\w-x]])/' => 'False [] range "\w-" {#} m/(?[[\w-{#}x]])/',
236 'm/(?[[a-\pM]])/' => 'False [] range "a-\pM" {#} m/(?[[a-\pM{#}]])/',
237 'm/(?[[\pM-x]])/' => 'False [] range "\pM-" {#} m/(?[[\pM-{#}x]])/',
238 'm/(?[[^\N{LATIN CAPITAL LETTER A WITH MACRON AND GRAVE}]])/' => '\N{} in inverted character class or as a range end-point is restricted to one character {#} m/(?[[^\N{U+100.300{#}}]])/',
239 'm/(?[ \p{Digit} & (?(?[ \p{Thai} | \p{Lao} ]))])/' => 'Sequence (?(...) not recognized {#} m/(?[ \p{Digit} & (?({#}?[ \p{Thai} | \p{Lao} ]))])/',
240 'm/(?[ \p{Digit} & (?:(?[ \p{Thai} | \p{Lao} ]))])/' => 'Expecting \'(?flags:(?[...\' {#} m/(?[ \p{Digit} & (?{#}:(?[ \p{Thai} | \p{Lao} ]))])/',
241 'm/\o{/' => 'Missing right brace on \o{ {#} m/\o{{#}/',
242 'm/\o/' => 'Missing braces on \o{} {#} m/\o{#}/',
243 'm/\o{}/' => 'Number with no digits {#} m/\o{}{#}/',
244 'm/[\o{]/' => 'Missing right brace on \o{ {#} m/[\o{{#}]/',
245 'm/[\o]/' => 'Missing braces on \o{} {#} m/[\o{#}]/',
246 'm/[\o{}]/' => 'Number with no digits {#} m/[\o{}{#}]/',
247 'm/(?^-i:foo)/' => 'Sequence (?^-...) not recognized {#} m/(?^-{#}i:foo)/',
248 'm/\87/' => 'Reference to nonexistent group {#} m/\87{#}/',
249 'm/a\87/' => 'Reference to nonexistent group {#} m/a\87{#}/',
250 'm/a\97/' => 'Reference to nonexistent group {#} m/a\97{#}/',
251 'm/(*DOOF)/' => 'Unknown verb pattern \'DOOF\' {#} m/(*DOOF){#}/',
252 'm/(?&a/' => 'Sequence (?&... not terminated {#} m/(?&a{#}/',
253 'm/(?P=/' => 'Sequence ?P=... not terminated {#} m/(?P={#}/',
254 "m/(?'/" => "Sequence (?'... not terminated {#} m/(?'{#}/",
255 "m/(?</" => "Sequence (?<... not terminated {#} m/(?<{#}/",
256 'm/(?&/' => 'Sequence (?&... not terminated {#} m/(?&{#}/',
257 'm/(?(</' => 'Sequence (?(<... not terminated {#} m/(?(<{#}/',
258 "m/(?('/" => "Sequence (?('... not terminated {#} m/(?('{#}/",
259 'm/\g{/' => 'Sequence \g{... not terminated {#} m/\g{{#}/',
260 'm/\k</' => 'Sequence \k<... not terminated {#} m/\k<{#}/',
261 'm/\cß/' => "Character following \"\\c\" must be printable ASCII",
262 '/((?# This is a comment in the middle of a token)?:foo)/' => 'In \'(?...)\', the \'(\' and \'?\' must be adjacent {#} m/((?# This is a comment in the middle of a token)?{#}:foo)/',
263 '/((?# This is a comment in the middle of a token)*FAIL)/' => 'In \'(*VERB...)\', the \'(\' and \'*\' must be adjacent {#} m/((?# This is a comment in the middle of a token)*{#}FAIL)/',
264 '/(?[\ &!])/' => 'Incomplete expression within \'(?[ ])\' {#} m/(?[\ &!{#}])/', # [perl #126180]
265 '/(?[()-!])/' => 'Incomplete expression within \'(?[ ])\' {#} m/(?[()-!{#}])/', # [perl #126204]
266 '/(?[!()])/' => 'Incomplete expression within \'(?[ ])\' {#} m/(?[!(){#}])/', # [perl #126404]
269 # These are messages that are warnings when not strict; death under 'use re
270 # "strict". See comment before @warnings as to why some have a \x{100} in
271 # them. This array has 3 elements per construct. [0] is the regex to use;
272 # [1] is the message under no strict, and [2] is under strict.
273 my @death_only_under_strict = (
275 => 'Use \x{...} for more than two hex characters {#} m/\xABC{#}/',
277 => 'Use \x{...} for more than two hex characters {#} m/[\xABC{#}]/',
279 # XXX This is a confusing error message. The G isn't ignored; it just
280 # terminates the \x. Also some messages below are missing the <-- HERE,
281 # aren't all category 'regexp'. (Hence we have to turn off 'digit'
282 # messages as well below)
283 'm/\xAG/' => 'Illegal hexadecimal digit \'G\' ignored',
284 => 'Non-hex character {#} m/\xAG{#}/',
285 'm/[\xAG]/' => 'Illegal hexadecimal digit \'G\' ignored',
286 => 'Non-hex character {#} m/[\xAG{#}]/',
287 'm/\o{789}/' => 'Non-octal character \'8\'. Resolved as "\o{7}"',
288 => 'Non-octal character {#} m/\o{78{#}9}/',
289 'm/[\o{789}]/' => 'Non-octal character \'8\'. Resolved as "\o{7}"',
290 => 'Non-octal character {#} m/[\o{78{#}9}]/',
292 => 'Number with no digits {#} m/\x{}{#}/',
294 => 'Number with no digits {#} m/[\x{}{#}]/',
295 'm/\x{ABCDEFG}/' => 'Illegal hexadecimal digit \'G\' ignored',
296 => 'Non-hex character {#} m/\x{ABCDEFG{#}}/',
297 'm/[\x{ABCDEFG}]/' => 'Illegal hexadecimal digit \'G\' ignored',
298 => 'Non-hex character {#} m/[\x{ABCDEFG{#}}]/',
299 'm/[\N{}]/' => 'Ignoring zero length \\N{} in character class {#} m/[\\N{}{#}]/',
300 => 'Zero length \\N{} {#} m/[\\N{}{#}]/',
302 => 'Zero length \\N{} {#} m/\\N{}{#}/',
303 "m'[\\y]\\x{100}'" => 'Unrecognized escape \y in character class passed through {#} m/[\y{#}]\x{100}/',
304 => 'Unrecognized escape \y in character class {#} m/[\y{#}]\x{100}/',
305 'm/[a-\d]\x{100}/' => 'False [] range "a-\d" {#} m/[a-\d{#}]\x{100}/',
306 => 'False [] range "a-\d" {#} m/[a-\d{#}]\x{100}/',
307 'm/[\w-x]\x{100}/' => 'False [] range "\w-" {#} m/[\w-{#}x]\x{100}/',
308 => 'False [] range "\w-" {#} m/[\w-{#}x]\x{100}/',
309 'm/[a-\pM]\x{100}/' => 'False [] range "a-\pM" {#} m/[a-\pM{#}]\x{100}/',
310 => 'False [] range "a-\pM" {#} m/[a-\pM{#}]\x{100}/',
311 'm/[\pM-x]\x{100}/' => 'False [] range "\pM-" {#} m/[\pM-{#}x]\x{100}/',
312 => 'False [] range "\pM-" {#} m/[\pM-{#}x]\x{100}/',
313 'm/[^\N{LATIN CAPITAL LETTER A WITH MACRON AND GRAVE}]/' => 'Using just the first character returned by \N{} in character class {#} m/[^\N{U+100.300}{#}]/',
314 => '\N{} in inverted character class or as a range end-point is restricted to one character {#} m/[^\N{U+100.300{#}}]/',
315 'm/[\x03-\N{LATIN CAPITAL LETTER A WITH MACRON AND GRAVE}]/' => 'Using just the first character returned by \N{} in character class {#} m/[\x03-\N{U+100.300}{#}]/',
316 => '\N{} in inverted character class or as a range end-point is restricted to one character {#} m/[\x03-\N{U+100.300{#}}]/',
317 'm/[\N{LATIN CAPITAL LETTER A WITH MACRON AND GRAVE}-\x{10FFFF}]/' => 'Using just the first character returned by \N{} in character class {#} m/[\N{U+100.300}{#}-\x{10FFFF}]/',
318 => '\N{} in inverted character class or as a range end-point is restricted to one character {#} m/[\N{U+100.300{#}}-\x{10FFFF}]/',
319 '/[\08]/' => '\'\08\' resolved to \'\o{0}8\' {#} m/[\08{#}]/',
320 => 'Need exactly 3 octal digits {#} m/[\08{#}]/',
321 '/[\018]/' => '\'\018\' resolved to \'\o{1}8\' {#} m/[\018{#}]/',
322 => 'Need exactly 3 octal digits {#} m/[\018{#}]/',
324 => 'Need exactly 3 octal digits {#} m/[\_\0]{#}/',
326 => 'Need exactly 3 octal digits {#} m/[\07]{#}/',
328 => 'Need exactly 3 octal digits {#} m/[\0005]{#}/',
329 '/[\8\9]\x{100}/' => ['Unrecognized escape \8 in character class passed through {#} m/[\8{#}\9]\x{100}/',
330 'Unrecognized escape \9 in character class passed through {#} m/[\8\9{#}]\x{100}/',
332 => 'Unrecognized escape \8 in character class {#} m/[\8{#}\9]\x{100}/',
333 '/[a-\d]\x{100}/' => 'False [] range "a-\d" {#} m/[a-\d{#}]\x{100}/',
334 => 'False [] range "a-\d" {#} m/[a-\d{#}]\x{100}/',
335 '/[\d-b]\x{100}/' => 'False [] range "\d-" {#} m/[\d-{#}b]\x{100}/',
336 => 'False [] range "\d-" {#} m/[\d-{#}b]\x{100}/',
337 '/[\s-\d]\x{100}/' => 'False [] range "\s-" {#} m/[\s-{#}\d]\x{100}/',
338 => 'False [] range "\s-" {#} m/[\s-{#}\d]\x{100}/',
339 '/[\d-\s]\x{100}/' => 'False [] range "\d-" {#} m/[\d-{#}\s]\x{100}/',
340 => 'False [] range "\d-" {#} m/[\d-{#}\s]\x{100}/',
341 '/[a-[:digit:]]\x{100}/' => 'False [] range "a-[:digit:]" {#} m/[a-[:digit:]{#}]\x{100}/',
342 => 'False [] range "a-[:digit:]" {#} m/[a-[:digit:]{#}]\x{100}/',
343 '/[[:digit:]-b]\x{100}/' => 'False [] range "[:digit:]-" {#} m/[[:digit:]-{#}b]\x{100}/',
344 => 'False [] range "[:digit:]-" {#} m/[[:digit:]-{#}b]\x{100}/',
345 '/[[:alpha:]-[:digit:]]\x{100}/' => 'False [] range "[:alpha:]-" {#} m/[[:alpha:]-{#}[:digit:]]\x{100}/',
346 => 'False [] range "[:alpha:]-" {#} m/[[:alpha:]-{#}[:digit:]]\x{100}/',
347 '/[[:digit:]-[:alpha:]]\x{100}/' => 'False [] range "[:digit:]-" {#} m/[[:digit:]-{#}[:alpha:]]\x{100}/',
348 => 'False [] range "[:digit:]-" {#} m/[[:digit:]-{#}[:alpha:]]\x{100}/',
349 '/[a\zb]\x{100}/' => 'Unrecognized escape \z in character class passed through {#} m/[a\z{#}b]\x{100}/',
350 => 'Unrecognized escape \z in character class {#} m/[a\z{#}b]\x{100}/',
353 # These need the character 'ネ' as a marker for mark_as_utf8()
354 my @death_utf8 = mark_as_utf8(
355 '/ネ[[=ネ=]]ネ/' => 'POSIX syntax [= =] is reserved for future extensions {#} m/ネ[[=ネ=]{#}]ネ/',
356 '/ネ(?<= .*)/' => 'Variable length lookbehind not implemented in regex m/ネ(?<= .*)/',
358 '/(?<= ネ{1000})/' => 'Lookbehind longer than 255 not implemented in regex m/(?<= ネ{1000})/',
360 '/ネ(?ネ)ネ/' => 'Sequence (?ネ...) not recognized {#} m/ネ(?ネ{#})ネ/',
362 '/ネ(?(1ネ))ネ/' => 'Switch condition not recognized {#} m/ネ(?(1ネ{#}))ネ/',
364 '/(?(1)ネ|y|ヌ)/' => 'Switch (?(condition)... contains too many branches {#} m/(?(1)ネ|y|{#}ヌ)/',
366 '/(?(ネ)y|ネ)/' => 'Unknown switch condition (?(...)) {#} m/(?(ネ{#})y|ネ)/',
368 '/ネ(?/' => 'Sequence (? incomplete {#} m/ネ(?{#}/',
370 '/ネ(?;ネ/' => 'Sequence (?;...) not recognized {#} m/ネ(?;{#}ネ/',
371 '/ネ(?<;ネ/' => 'Group name must start with a non-digit word character {#} m/ネ(?<;{#}ネ/',
372 '/ネ(?\ixネ/' => 'Sequence (?\...) not recognized {#} m/ネ(?\{#}ixネ/',
373 '/ネ(?^lu:ネ)/' => 'Regexp modifiers "l" and "u" are mutually exclusive {#} m/ネ(?^lu{#}:ネ)/',
374 '/ネ(?lil:ネ)/' => 'Regexp modifier "l" may not appear twice {#} m/ネ(?lil{#}:ネ)/',
375 '/ネ(?aaia:ネ)/' => 'Regexp modifier "a" may appear a maximum of twice {#} m/ネ(?aaia{#}:ネ)/',
376 '/ネ(?i-l:ネ)/' => 'Regexp modifier "l" may not appear after the "-" {#} m/ネ(?i-l{#}:ネ)/',
378 '/ネ((ネ)/' => 'Unmatched ( {#} m/ネ({#}(ネ)/',
380 "/ネ{$inf_p1}ネ/" => "Quantifier in {,} bigger than $inf_m1 {#} m/ネ{{#}$inf_p1}ネ/",
383 '/ネ**ネ/' => 'Nested quantifiers {#} m/ネ**{#}ネ/',
385 '/ネ[ネ/' => 'Unmatched [ {#} m/ネ[{#}ネ/',
387 '/*ネ/', => 'Quantifier follows nothing {#} m/*{#}ネ/',
389 '/ネ\p{ネ/' => 'Missing right brace on \p{} {#} m/ネ\p{{#}ネ/',
391 '/(ネ)\2ネ/' => 'Reference to nonexistent group {#} m/(ネ)\2{#}ネ/',
393 '/\g{ネ/; #no latin1' => 'Sequence \g{... not terminated {#} m/\g{ネ{#}/',
395 'my $m = "ネ\\\"; $m =~ $m', => 'Trailing \ in regex m/ネ\/',
397 '/\x{ネ/' => 'Missing right brace on \x{} {#} m/\x{{#}ネ/',
398 '/ネ[\x{ネ]ネ/' => 'Missing right brace on \x{} {#} m/ネ[\x{{#}ネ]ネ/',
399 '/ネ[\x{ネ]/' => 'Missing right brace on \x{} {#} m/ネ[\x{{#}ネ]/',
401 '/ネ\o{ネ/' => 'Missing right brace on \o{ {#} m/ネ\o{{#}ネ/',
404 '/ネ[[=ネ=]]ネ/' => 'POSIX syntax [= =] is reserved for future extensions {#} m/ネ[[=ネ=]{#}]ネ/',
406 '/ネ[[.ネ.]]ネ/' => 'POSIX syntax [. .] is reserved for future extensions {#} m/ネ[[.ネ.]{#}]ネ/',
408 '/[ネ-a]ネ/' => 'Invalid [] range "ネ-a" {#} m/[ネ-a{#}]ネ/',
410 '/ネ\p{}ネ/' => 'Empty \p{} {#} m/ネ\p{{#}}ネ/',
412 '/ネ(?[[[:ネ]]])ネ/' => "Syntax error in (?[...]) in regex m/ネ(?[[[:ネ]]])ネ/",
413 '/ネ(?[[[:ネ: ])ネ/' => "Syntax error in (?[...]) in regex m/ネ(?[[[:ネ: ])ネ/",
414 '/ネ(?[[[::]]])ネ/' => "Syntax error in (?[...]) in regex m/ネ(?[[[::]]])ネ/",
415 '/ネ(?[[[:ネ:]]])ネ/' => "Syntax error in (?[...]) in regex m/ネ(?[[[:ネ:]]])ネ/",
416 '/ネ(?[[:ネ:]])ネ/' => "",
417 '/ネ(?[ネ])ネ/' => 'Unexpected character {#} m/ネ(?[ネ{#}])ネ/',
418 '/ネ(?[ + [ネ] ])/' => 'Unexpected binary operator \'+\' with no preceding operand {#} m/ネ(?[ +{#} [ネ] ])/',
419 '/ネ(?[ \cK - ( + [ネ] ) ])/' => 'Unexpected binary operator \'+\' with no preceding operand {#} m/ネ(?[ \cK - ( +{#} [ネ] ) ])/',
420 '/ネ(?[ \cK ( [ネ] ) ])/' => 'Unexpected \'(\' with no preceding operator {#} m/ネ(?[ \cK ({#} [ネ] ) ])/',
421 '/ネ(?[ \cK [ネ] ])ネ/' => 'Operand with no preceding operator {#} m/ネ(?[ \cK [ネ{#}] ])ネ/',
422 '/ネ(?[ \0004 ])ネ/' => 'Need exactly 3 octal digits {#} m/ネ(?[ \0004 {#}])ネ/',
423 '/(?[ \o{ネ} ])ネ/' => 'Non-octal character {#} m/(?[ \o{ネ{#}} ])ネ/',
424 '/ネ(?[ \o{} ])ネ/' => 'Number with no digits {#} m/ネ(?[ \o{}{#} ])ネ/',
425 '/(?[ \x{ネ} ])ネ/' => 'Non-hex character {#} m/(?[ \x{ネ{#}} ])ネ/',
426 '/(?[ \p{ネ} ])/' => 'Can\'t find Unicode property definition "ネ" {#} m/(?[ \p{ネ}{#} ])/',
427 '/(?[ \p{ ネ = bar } ])/' => 'Can\'t find Unicode property definition "ネ = bar" {#} m/(?[ \p{ ネ = bar }{#} ])/',
428 '/ネ(?[ \t ]/' => 'Syntax error in (?[...]) in regex m/ネ(?[ \t ]/',
429 '/(?[ \t + \e # ネ This was supposed to be a comment ])/' => 'Syntax error in (?[...]) in regex m/(?[ \t + \e # ネ This was supposed to be a comment ])/',
430 'm/(*ネ)ネ/' => q<Unknown verb pattern 'ネ' {#} m/(*ネ){#}ネ/>,
431 '/\cネ/' => "Character following \"\\c\" must be printable ASCII",
432 '/\b{ネ}/' => "'ネ' is an unknown bound type {#} m/\\b{ネ{#}}/",
433 '/\B{ネ}/' => "'ネ' is an unknown bound type {#} m/\\B{ネ{#}}/",
435 push @death, @death_utf8;
437 my @death_utf8_only_under_strict = (
438 "m'ネ[\\y]ネ'" => 'Unrecognized escape \y in character class passed through {#} m/ネ[\y{#}]ネ/',
439 => 'Unrecognized escape \y in character class {#} m/ネ[\y{#}]ネ/',
440 'm/ネ[ネ-\d]ネ/' => 'False [] range "ネ-\d" {#} m/ネ[ネ-\d{#}]ネ/',
441 => 'False [] range "ネ-\d" {#} m/ネ[ネ-\d{#}]ネ/',
442 'm/ネ[\w-ネ]ネ/' => 'False [] range "\w-" {#} m/ネ[\w-{#}ネ]ネ/',
443 => 'False [] range "\w-" {#} m/ネ[\w-{#}ネ]ネ/',
444 'm/ネ[ネ-\pM]ネ/' => 'False [] range "ネ-\pM" {#} m/ネ[ネ-\pM{#}]ネ/',
445 => 'False [] range "ネ-\pM" {#} m/ネ[ネ-\pM{#}]ネ/',
446 '/ネ[ネ-[:digit:]]ネ/' => 'False [] range "ネ-[:digit:]" {#} m/ネ[ネ-[:digit:]{#}]ネ/',
447 => 'False [] range "ネ-[:digit:]" {#} m/ネ[ネ-[:digit:]{#}]ネ/',
448 '/ネ[\d-\s]ネ/' => 'False [] range "\d-" {#} m/ネ[\d-{#}\s]ネ/',
449 => 'False [] range "\d-" {#} m/ネ[\d-{#}\s]ネ/',
450 '/ネ[a\zb]ネ/' => 'Unrecognized escape \z in character class passed through {#} m/ネ[a\z{#}b]ネ/',
451 => 'Unrecognized escape \z in character class {#} m/ネ[a\z{#}b]ネ/',
453 # Tests involving a user-defined charnames translator are in pat_advanced.t
455 # In the following arrays of warnings, the value can be an array of things to
456 # expect. If the empty string, it means no warning should be raised.
459 # Key-value pairs of code/error of code that should have non-fatal regexp
460 # warnings. Most currently have \x{100} appended to them to force them to be
461 # upgraded to UTF-8, and the first pass restarted. Previously this would
462 # cause some warnings to be output twice. This tests that that behavior has
466 'm/\b*\x{100}/' => '\b* matches null string many times {#} m/\b*{#}\x{100}/',
467 '/\b{g}/a' => "Using /u for '\\b{g}' instead of /a {#} m/\\b{g}{#}/",
468 '/\B{gcb}/a' => "Using /u for '\\B{gcb}' instead of /a {#} m/\\B{gcb}{#}/",
469 'm/[:blank:]\x{100}/' => 'POSIX syntax [: :] belongs inside character classes {#} m/[:blank:]{#}\x{100}/',
470 'm/[[:cntrl:]][:^ascii:]\x{100}/' => 'POSIX syntax [: :] belongs inside character classes {#} m/[[:cntrl:]][:^ascii:]{#}\x{100}/',
471 'm/[[:ascii]]\x{100}/' => "Assuming NOT a POSIX class since there is no terminating ':' {#} m/[[:ascii{#}]]\\x{100}/",
472 'm/(?[[:word]])\x{100}/' => "Assuming NOT a POSIX class since there is no terminating ':' {#} m/(?[[:word{#}]])\\x{100}/",
473 "m'\\y\\x{100}'" => 'Unrecognized escape \y passed through {#} m/\y{#}\x{100}/',
474 '/x{3,1}/' => 'Quantifier {n,m} with n > m can\'t match {#} m/x{3,1}{#}/',
475 '/\08/' => '\'\08\' resolved to \'\o{0}8\' {#} m/\08{#}/',
476 '/\018/' => '\'\018\' resolved to \'\o{1}8\' {#} m/\018{#}/',
477 '/(?=a)*/' => '(?=a)* matches null string many times {#} m/(?=a)*{#}/',
478 'my $x = \'\m\'; qr/a$x/' => 'Unrecognized escape \m passed through {#} m/a\m{#}/',
479 '/\q/' => 'Unrecognized escape \q passed through {#} m/\q{#}/',
481 # These two tests do not include the marker, because regcomp.c no
482 # longer knows where it goes by the time this warning is emitted.
483 # See [perl #122680] regcomp warning gives wrong position of
485 '/(?=a){1,3}\x{100}/' => 'Quantifier unexpected on zero-length expression in regex m/(?=a){1,3}\x{100}/',
486 '/(a|b)(?=a){3}\x{100}/' => 'Quantifier unexpected on zero-length expression in regex m/(a|b)(?=a){3}\x{100}/',
490 '/[:alpha:]\x{100}/' => 'POSIX syntax [: :] belongs inside character classes {#} m/[:alpha:]{#}\x{100}/',
491 '/[:zog:]\x{100}/' => 'POSIX syntax [: :] belongs inside character classes (but this one isn\'t fully valid) {#} m/[:zog:]{#}\x{100}/',
492 '/[.zog.]\x{100}/' => 'POSIX syntax [. .] belongs inside character classes (but this one isn\'t implemented) {#} m/[.zog.]{#}\x{100}/',
493 '/[.z#g.]\x{100}/x' => "", # Runs into a comment
494 '/[.z\#g.]\x{100}/x' => 'POSIX syntax [. .] belongs inside character classes (but this one isn\'t implemented) {#} m/[.z\#g.]{#}\x{100}/',
496 '/(?c)\x{100}/' => 'Useless (?c) - use /gc modifier {#} m/(?c{#})\x{100}/',
497 '/(?-c)\x{100}/' => 'Useless (?-c) - don\'t use /gc modifier {#} m/(?-c{#})\x{100}/',
498 '/(?g)\x{100}/' => 'Useless (?g) - use /g modifier {#} m/(?g{#})\x{100}/',
499 '/(?-g)\x{100}/' => 'Useless (?-g) - don\'t use /g modifier {#} m/(?-g{#})\x{100}/',
500 '/(?o)\x{100}/' => 'Useless (?o) - use /o modifier {#} m/(?o{#})\x{100}/',
501 '/(?-o)\x{100}/' => 'Useless (?-o) - don\'t use /o modifier {#} m/(?-o{#})\x{100}/',
502 '/(?g-o)\x{100}/' => [ 'Useless (?g) - use /g modifier {#} m/(?g{#}-o)\x{100}/',
503 'Useless (?-o) - don\'t use /o modifier {#} m/(?g-o{#})\x{100}/',
505 '/(?g-c)\x{100}/' => [ 'Useless (?g) - use /g modifier {#} m/(?g{#}-c)\x{100}/',
506 'Useless (?-c) - don\'t use /gc modifier {#} m/(?g-c{#})\x{100}/',
508 # (?c) means (?g) error won't be thrown
509 '/(?o-cg)\x{100}/' => [ 'Useless (?o) - use /o modifier {#} m/(?o{#}-cg)\x{100}/',
510 'Useless (?-c) - don\'t use /gc modifier {#} m/(?o-c{#}g)\x{100}/',
512 '/(?ogc)\x{100}/' => [ 'Useless (?o) - use /o modifier {#} m/(?o{#}gc)\x{100}/',
513 'Useless (?g) - use /g modifier {#} m/(?og{#}c)\x{100}/',
514 'Useless (?c) - use /gc modifier {#} m/(?ogc{#})\x{100}/',
516 '/a{1,1}?\x{100}/' => 'Useless use of greediness modifier \'?\' {#} m/a{1,1}?{#}\x{100}/',
517 "/(?[ [ % - % ] ])/" => "",
518 "/(?[ [ : - \\x$colon_hex ] ])\\x{100}/" => "\": - \\x$colon_hex \" is more clearly written simply as \":\" {#} m/(?[ [ : - \\x$colon_hex {#}] ])\\x{100}/",
519 "/(?[ [ \\x$colon_hex - : ] ])\\x{100}/" => "\"\\x$colon_hex\ - : \" is more clearly written simply as \":\" {#} m/(?[ [ \\x$colon_hex - : {#}] ])\\x{100}/",
520 "/(?[ [ \\t - \\x$tab_hex ] ])\\x{100}/" => "\"\\t - \\x$tab_hex \" is more clearly written simply as \"\\t\" {#} m/(?[ [ \\t - \\x$tab_hex {#}] ])\\x{100}/",
521 "/(?[ [ \\x$tab_hex - \\t ] ])\\x{100}/" => "\"\\x$tab_hex\ - \\t \" is more clearly written simply as \"\\t\" {#} m/(?[ [ \\x$tab_hex - \\t {#}] ])\\x{100}/",
522 "/(?[ [ $B_hex - C ] ])/" => "Ranges of ASCII printables should be some subset of \"0-9\", \"A-Z\", or \"a-z\" {#} m/(?[ [ $B_hex - C {#}] ])/",
523 "/(?[ [ A - $B_hex ] ])/" => "Ranges of ASCII printables should be some subset of \"0-9\", \"A-Z\", or \"a-z\" {#} m/(?[ [ A - $B_hex {#}] ])/",
524 "/(?[ [ $low_mixed_alpha - $high_mixed_alpha ] ])/" => "Ranges of ASCII printables should be some subset of \"0-9\", \"A-Z\", or \"a-z\" {#} m/(?[ [ $low_mixed_alpha - $high_mixed_alpha {#}] ])/",
525 "/(?[ [ $low_mixed_digit - $high_mixed_digit ] ])/" => "Ranges of ASCII printables should be some subset of \"0-9\", \"A-Z\", or \"a-z\" {#} m/(?[ [ $low_mixed_digit - $high_mixed_digit {#}] ])/",
528 '/[:blank]\x{100}/' => 'POSIX syntax [: :] belongs inside character classes (but this one isn\'t fully valid) {#} m/[:blank{#}]\x{100}/',
529 '/[[:digit]]\x{100}/' => 'Assuming NOT a POSIX class since there is no terminating \':\' {#} m/[[:digit{#}]]\x{100}/', # [perl # 8904]
530 '/[[:digit:foo]\x{100}/' => 'Assuming NOT a POSIX class since there is no terminating \']\' {#} m/[[:digit:{#}foo]\x{100}/',
531 '/[[:di#it:foo]\x{100}/x' => 'Assuming NOT a POSIX class since there is no terminating \']\' {#} m/[[:di#it:{#}foo]\x{100}/',
532 '/[[:dgit]]\x{100}/' => 'Assuming NOT a POSIX class since there is no terminating \':\' {#} m/[[:dgit{#}]]\x{100}/',
533 '/[[:dgit:foo]\x{100}/' => 'Assuming NOT a POSIX class since there is no terminating \']\' {#} m/[[:dgit:{#}foo]\x{100}/',
534 '/[[:dgt]]\x{100}/' => "", # Far enough away from a real class to not be recognized as one
535 '/[[:dgt:foo]\x{100}/' => "",
536 '/[[:DIGIT]]\x{100}/' => [ 'Assuming NOT a POSIX class since the name must be all lowercase letters {#} m/[[:DIGIT{#}]]\x{100}/',
537 'Assuming NOT a POSIX class since there is no terminating \':\' {#} m/[[:DIGIT{#}]]\x{100}/',
539 '/[[digit]\x{100}/' => [ 'Assuming NOT a POSIX class since there must be a starting \':\' {#} m/[[{#}digit]\x{100}/',
540 'Assuming NOT a POSIX class since there is no terminating \':\' {#} m/[[digit{#}]\x{100}/',
542 '/[[alpha]]\x{100}/' => [ 'Assuming NOT a POSIX class since there must be a starting \':\' {#} m/[[{#}alpha]]\x{100}/',
543 'Assuming NOT a POSIX class since there is no terminating \':\' {#} m/[[alpha{#}]]\x{100}/',
545 '/[[^word]\x{100}/' => [ 'Assuming NOT a POSIX class since the \'^\' must come after the colon {#} m/[[^{#}word]\x{100}/',
546 'Assuming NOT a POSIX class since there must be a starting \':\' {#} m/[[^{#}word]\x{100}/',
547 'Assuming NOT a POSIX class since there is no terminating \':\' {#} m/[[^word{#}]\x{100}/',
549 '/[[ ^ : x d i g i t : ] ]\x{100}/' => [ 'Assuming NOT a POSIX class since no blanks are allowed in one {#} m/[[ {#}^ : x d i g i t : ] ]\x{100}/',
550 'Assuming NOT a POSIX class since the \'^\' must come after the colon {#} m/[[ ^{#} : x d i g i t : ] ]\x{100}/',
551 'Assuming NOT a POSIX class since no blanks are allowed in one {#} m/[[ ^ {#}: x d i g i t : ] ]\x{100}/',
552 'Assuming NOT a POSIX class since no blanks are allowed in one {#} m/[[ ^ : {#}x d i g i t : ] ]\x{100}/',
553 'Assuming NOT a POSIX class since no blanks are allowed in one {#} m/[[ ^ : x d i g i t : ]{#} ]\x{100}/',
555 '/[foo:lower:]]\x{100}/' => 'Assuming NOT a POSIX class since it doesn\'t start with a \'[\' {#} m/[foo{#}:lower:]]\x{100}/',
556 '/[[;upper;]]\x{100}/' => [ 'Assuming NOT a POSIX class since a semi-colon was found instead of a colon {#} m/[[;{#}upper;]]\x{100}/',
557 'Assuming NOT a POSIX class since a semi-colon was found instead of a colon {#} m/[[;upper;]{#}]\x{100}/',
559 '/[foo;punct;]]\x{100}/' => [ 'Assuming NOT a POSIX class since it doesn\'t start with a \'[\' {#} m/[foo{#};punct;]]\x{100}/',
560 'Assuming NOT a POSIX class since a semi-colon was found instead of a colon {#} m/[foo;{#}punct;]]\x{100}/',
561 'Assuming NOT a POSIX class since a semi-colon was found instead of a colon {#} m/[foo;punct;]{#}]\x{100}/',
564 ); # See comments before this for why '\x{100}' is generally needed
566 # These need the character 'ネ' as a marker for mark_as_utf8()
567 my @warnings_utf8 = mark_as_utf8(
568 'm/ネ\b*ネ/' => '\b* matches null string many times {#} m/ネ\b*{#}ネ/',
569 '/(?=ネ)*/' => '(?=ネ)* matches null string many times {#} m/(?=ネ)*{#}/',
570 'm/ネ[:foo:]ネ/' => 'POSIX syntax [: :] belongs inside character classes (but this one isn\'t fully valid) {#} m/ネ[:foo:]{#}ネ/',
571 '/ネ(?c)ネ/' => 'Useless (?c) - use /gc modifier {#} m/ネ(?c{#})ネ/',
572 '/utf8 ネ (?ogc) ネ/' => [
573 'Useless (?o) - use /o modifier {#} m/utf8 ネ (?o{#}gc) ネ/',
574 'Useless (?g) - use /g modifier {#} m/utf8 ネ (?og{#}c) ネ/',
575 'Useless (?c) - use /gc modifier {#} m/utf8 ネ (?ogc{#}) ネ/',
580 push @warning, @warnings_utf8;
582 my @warning_only_under_strict = (
583 '/[\N{U+00}-\x01]\x{100}/' => 'Both or neither range ends should be Unicode {#} m/[\N{U+00}-\x01{#}]\x{100}/',
584 '/[\x00-\N{SOH}]\x{100}/' => 'Both or neither range ends should be Unicode {#} m/[\x00-\N{U+01}{#}]\x{100}/',
585 '/[\N{DEL}-\o{377}]\x{100}/' => 'Both or neither range ends should be Unicode {#} m/[\N{U+7F}-\o{377}{#}]\x{100}/',
586 '/[\o{0}-\N{U+01}]\x{100}/' => 'Both or neither range ends should be Unicode {#} m/[\o{0}-\N{U+01}{#}]\x{100}/',
587 '/[\000-\N{U+01}]\x{100}/' => 'Both or neither range ends should be Unicode {#} m/[\000-\N{U+01}{#}]\x{100}/',
588 '/[\N{DEL}-\377]\x{100}/' => 'Both or neither range ends should be Unicode {#} m/[\N{U+7F}-\377{#}]\x{100}/',
589 '/[\N{U+00}-A]\x{100}/' => 'Ranges of ASCII printables should be some subset of "0-9", "A-Z", or "a-z" {#} m/[\N{U+00}-A{#}]\x{100}/',
590 '/[a-\N{U+FF}]\x{100}/' => 'Ranges of ASCII printables should be some subset of "0-9", "A-Z", or "a-z" {#} m/[a-\N{U+FF}{#}]\x{100}/',
591 '/[\N{U+00}-\a]\x{100}/' => "",
592 '/[\a-\N{U+FF}]\x{100}/' => "",
593 '/[\N{U+FF}-\x{100}]/' => 'Both or neither range ends should be Unicode {#} m/[\N{U+FF}-\x{100}{#}]/',
594 '/[\N{U+100}-\x{101}]/' => "",
596 "/[:-\\x$colon_hex]\\x{100}/" => "\":-\\x$colon_hex\" is more clearly written simply as \":\" {#} m/[:-\\x$colon_hex\{#}]\\x{100}/",
597 "/[\\x$colon_hex-:]\\x{100}/" => "\"\\x$colon_hex-:\" is more clearly written simply as \":\" {#} m/[\\x$colon_hex\-:{#}]\\x{100}/",
598 "/[\\t-\\x$tab_hex]\\x{100}/" => "\"\\t-\\x$tab_hex\" is more clearly written simply as \"\\t\" {#} m/[\\t-\\x$tab_hex\{#}]\\x{100}/",
599 "/[\\x$tab_hex-\\t]\\x{100}/" => "\"\\x$tab_hex-\\t\" is more clearly written simply as \"\\t\" {#} m/[\\x$tab_hex\-\\t{#}]\\x{100}/",
600 "/[$B_hex-C]/" => "Ranges of ASCII printables should be some subset of \"0-9\", \"A-Z\", or \"a-z\" {#} m/[$B_hex-C{#}]/",
601 "/[A-$B_hex]/" => "Ranges of ASCII printables should be some subset of \"0-9\", \"A-Z\", or \"a-z\" {#} m/[A-$B_hex\{#}]/",
602 "/[$low_mixed_alpha-$high_mixed_alpha]/" => "Ranges of ASCII printables should be some subset of \"0-9\", \"A-Z\", or \"a-z\" {#} m/[$low_mixed_alpha-$high_mixed_alpha\{#}]/",
603 "/[$low_mixed_digit-$high_mixed_digit]/" => "Ranges of ASCII printables should be some subset of \"0-9\", \"A-Z\", or \"a-z\" {#} m/[$low_mixed_digit-$high_mixed_digit\{#}]/",
606 my @warning_utf8_only_under_strict = mark_as_utf8(
607 '/ネ[᪉-᪐]/; #no latin1' => "Ranges of digits should be from the same group of 10 {#} m/ネ[᪉-᪐{#}]/",
608 '/ネ(?[ [ ᪉ - ᪐ ] ])/; #no latin1' => "Ranges of digits should be from the same group of 10 {#} m/ネ(?[ [ ᪉ - ᪐ {#}] ])/",
609 '/ネ[᧙-᧚]/; #no latin1' => "Ranges of digits should be from the same group of 10 {#} m/ネ[᧙-᧚{#}]/",
610 '/ネ(?[ [ ᧙ - ᧚ ] ])/; #no latin1' => "Ranges of digits should be from the same group of 10 {#} m/ネ(?[ [ ᧙ - ᧚ {#}] ])/",
613 push @warning_only_under_strict, @warning_utf8_only_under_strict;
615 my @experimental_regex_sets = (
616 '/(?[ \t ])/' => 'The regex_sets feature is experimental {#} m/(?[{#} \t ])/',
617 'use utf8; /utf8 ネ (?[ [\tネ] ])/' => do { use utf8; 'The regex_sets feature is experimental {#} m/utf8 ネ (?[{#} [\tネ] ])/' },
618 '/noutf8 ネ (?[ [\tネ] ])/' => 'The regex_sets feature is experimental {#} m/noutf8 ネ (?[{#} [\tネ] ])/',
622 '/\w{/' => 'Unescaped left brace in regex is deprecated, passed through {#} m/\w{{#}/',
624 'Unrecognized escape \q{ passed through {#} m/\q{{#}/',
625 'Unescaped left brace in regex is deprecated, passed through {#} m/\q{{#}/'
627 '/:{4,a}/' => 'Unescaped left brace in regex is deprecated, passed through {#} m/:{{#}4,a}/',
628 '/abc/xix' => 'Having more than one /x regexp modifier is deprecated',
629 '/(?xmsixp:abc)/' => 'Having more than one /x regexp modifier is deprecated',
630 '/(?xmsixp)abc/' => 'Having more than one /x regexp modifier is deprecated',
631 '/(?xxxx:abc)/' => 'Having more than one /x regexp modifier is deprecated',
634 for my $strict ("", "use re 'strict';") {
636 # First time just use @death; but under strict we add the things that fail
637 # there. Doing it this way makes sure that 'strict' doesnt change the
638 # things that are already fatal when not under strict.
640 for (my $i = 0; $i < @death_only_under_strict; $i += 3) {
641 push @death, $death_only_under_strict[$i], # The regex
642 $death_only_under_strict[$i+2]; # The fatal msg
644 for (my $i = 0; $i < @death_utf8_only_under_strict; $i += 3) {
646 # Same with the utf8 versions
647 push @death, mark_as_utf8($death_utf8_only_under_strict[$i],
648 $death_utf8_only_under_strict[$i+2]);
651 for (my $i = 0; $i < @death; $i += 2) {
652 my $regex = $death[$i];
653 my $expect = fixup_expect($death[$i+1]);
654 no warnings 'experimental::regex_sets';
655 no warnings 'experimental::re_strict';
658 my $eval_string = "$strict $regex";
661 like($@, qr/\Q$expect/, $eval_string);
662 }, undef, "... and died without any other warnings");
666 for my $strict ("", "no warnings 'experimental::re_strict'; use re 'strict';") {
667 my @warning_tests = @warning;
669 # Build the tests for @warning. Use the strict/non-strict versions
672 push @warning_tests, @warning_only_under_strict;
675 for (my $i = 0; $i < @warning_only_under_strict; $i += 2) {
676 if ($warning_only_under_strict[$i] =~ /\Q(?[/) {
677 push @warning_tests, $warning_only_under_strict[$i], # The regex
678 $warning_only_under_strict[$i+1];
681 push @warning_tests, $warning_only_under_strict[$i], # The regex
682 ""; # No warning because not strict
685 for (my $i = 0; $i < @death_only_under_strict; $i += 3) {
686 push @warning_tests, $death_only_under_strict[$i], # The regex
687 $death_only_under_strict[$i+1]; # The warning
689 for (my $i = 0; $i < @death_utf8_only_under_strict; $i += 3) {
690 push @warning_tests, mark_as_utf8($death_utf8_only_under_strict[$i],
691 $death_utf8_only_under_strict[$i+1]);
695 foreach my $ref (\@warning_tests, \@experimental_regex_sets, \@deprecated) {
697 my $turn_off_warnings = "";
699 if ($ref == \@warning_tests) {
700 $warning_type = 'regexp, digit';
701 $turn_off_warnings = "no warnings 'experimental::regex_sets';";
702 $default_on = $strict;
704 elsif ($ref == \@deprecated) {
705 $warning_type = 'regexp, deprecated';
709 $warning_type = 'experimental::regex_sets';
712 for (my $i = 0; $i < @$ref; $i += 2) {
713 my $regex = $ref->[$i];
714 my @expect = fixup_expect($ref->[$i+1]);
716 # A length-1 array with an empty warning means no warning gets
718 undef @expect if @expect == 1 && $expect[0] eq "";
722 eval "$strict no warnings; $regex";
724 if (is($@, "", "$strict $regex did not die")) {
725 my @got = capture_warnings(sub {
727 eval "$strict $turn_off_warnings $regex" });
729 if (! is(scalar @got, scalar @expect,
730 "... and gave expected number ($count) of warnings"))
732 if (@got < @expect) {
734 note "Expected warnings not gotten:\n\t" . join "\n\t",
735 @expect[$count .. $#expect];
738 note "Unexpected warnings gotten:\n\t" . join("\n\t",
739 @got[$count .. $#got]);
742 foreach my $i (0 .. $count - 1) {
743 if (! like($got[$i], qr/\Q$expect[$i]/,
744 "... and gave expected warning"))
748 diag("GOT\n'$got[$i]'\nEXPECT\n'$expect[$i]'");
751 ok (0 == capture_warnings(sub {
753 eval "$strict no warnings '$warning_type'; $regex;" }
755 "... and turning off '$warning_type' warnings suppressed it");
757 # Test that whether the warning is on by default is
758 # correct. This test relies on the fact that we
759 # are outside the scope of any ‘use warnings’.
761 my @warns = capture_warnings(sub { $_ = "x";
762 eval "$strict $regex" });
763 # Warning should be on as well if is testing
764 # '(?[...])' which turns on strict
765 if ($default_on || grep { $_ =~ /\Q(?[/ } @expect ) {
766 ok @warns > 0, "... and the warning is on by default";
769 ok @warns == 0, "... and the warning is off by default";