7 eval 'require Config'; # assume defaults if this fails
11 use open qw(:utf8 :std);
14 ## If the markers used are changed (search for "MARKER1" in regcomp.c),
15 ## update only these two regexs, and leave the {#} in the @death/@warning
16 ## arrays below. The {#} is a meta-marker -- it marks where the marker should
19 ## Returns empty string if that is what is expected. Otherwise, handles
20 ## either a scalar, turning it into a single element array; or a ref to an
21 ## array, adjusting each element. If called in array context, returns an
22 ## array, otherwise the join of all elements
25 my $expect_ref = shift;
26 return if $expect_ref eq "";
29 if (ref $expect_ref) {
30 @expect = @$expect_ref;
33 @expect = $expect_ref;
36 foreach my $element (@expect) {
37 $element =~ s/{\#}/in regex; marked by <-- HERE in/;
38 $element =~ s/{\#}/ <-- HERE /;
41 return wantarray ? @expect : join "", @expect;
44 ## Because we don't "use utf8" in this file, we need to do some extra legwork
45 ## for the utf8 tests: Append 'use utf8' to the pattern, and mark the strings
46 ## to check against as UTF-8
48 ## This also creates a second variant of the tests to check if the
49 ## latin1 error messages are working correctly.
51 my $utf8 = "\x{30cd}";
56 while ( my ($pat, $msg) = splice(@_, 0, 2) ) {
57 my $l1_pat = $pat =~ s/$utf8/$l1/gr;
59 $pat = "use utf8; $pat";
62 $l1_msg = [ map { s/$utf8/$l1/gr } @$msg ];
63 @$msg = map { my $c = $_; utf8::decode($c); $c } @$msg;
66 $l1_msg = $msg =~ s/$utf8/$l1/gr;
69 push @ret, $pat => $msg;
70 push @ret, $l1_pat => $l1_msg unless $l1_pat =~ /#no latin1/;
75 my $inf_m1 = ($Config::Config{reg_infty} || 32767) - 1;
76 my $inf_p1 = $inf_m1 + 2;
79 ## Key-value pairs of code/error of code that should have fatal errors.
83 '/[[=foo=]]/' => 'POSIX syntax [= =] is reserved for future extensions {#} m/[[=foo=]{#}]/',
85 '/(?<= .*)/' => 'Variable length lookbehind not implemented in regex m/(?<= .*)/',
87 '/(?<= x{1000})/' => 'Lookbehind longer than 255 not implemented in regex m/(?<= x{1000})/',
89 '/(?@)/' => 'Sequence (?@...) not implemented {#} m/(?@{#})/',
91 '/(?{ 1/' => 'Missing right curly or square bracket',
93 '/(?(1x))/' => 'Switch condition not recognized {#} m/(?(1x{#}))/',
94 '/(?(1x(?#)))/'=> 'Switch condition not recognized {#} m/(?(1x{#}(?#)))/',
96 '/(?(1)x|y|z)/' => 'Switch (?(condition)... contains too many branches {#} m/(?(1)x|y|{#}z)/',
98 '/(?(x)y|x)/' => 'Unknown switch condition (?(...)) {#} m/(?(x{#})y|x)/',
100 '/(?/' => 'Sequence (? incomplete {#} m/(?{#}/',
102 '/(?;x/' => 'Sequence (?;...) not recognized {#} m/(?;{#}x/',
103 '/(?<;x/' => 'Group name must start with a non-digit word character {#} m/(?<;{#}x/',
104 '/(?\ix/' => 'Sequence (?\...) not recognized {#} m/(?\{#}ix/',
105 '/(?\mx/' => 'Sequence (?\...) not recognized {#} m/(?\{#}mx/',
106 '/(?\:x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}:x/',
107 '/(?\=x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}=x/',
108 '/(?\!x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}!x/',
109 '/(?\<=x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}<=x/',
110 '/(?\<!x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}<!x/',
111 '/(?\>x/' => 'Sequence (?\...) not recognized {#} m/(?\{#}>x/',
112 '/(?^-i:foo)/' => 'Sequence (?^-...) not recognized {#} m/(?^-{#}i:foo)/',
113 '/(?^-i)foo/' => 'Sequence (?^-...) not recognized {#} m/(?^-{#}i)foo/',
114 '/(?^d:foo)/' => 'Sequence (?^d...) not recognized {#} m/(?^d{#}:foo)/',
115 '/(?^d)foo/' => 'Sequence (?^d...) not recognized {#} m/(?^d{#})foo/',
116 '/(?^lu:foo)/' => 'Regexp modifiers "l" and "u" are mutually exclusive {#} m/(?^lu{#}:foo)/',
117 '/(?^lu)foo/' => 'Regexp modifiers "l" and "u" are mutually exclusive {#} m/(?^lu{#})foo/',
118 '/(?da:foo)/' => 'Regexp modifiers "d" and "a" are mutually exclusive {#} m/(?da{#}:foo)/',
119 '/(?lil:foo)/' => 'Regexp modifier "l" may not appear twice {#} m/(?lil{#}:foo)/',
120 '/(?aaia:foo)/' => 'Regexp modifier "a" may appear a maximum of twice {#} m/(?aaia{#}:foo)/',
121 '/(?i-l:foo)/' => 'Regexp modifier "l" may not appear after the "-" {#} m/(?i-l{#}:foo)/',
122 '/a\b{cde/' => 'Use "\b\{" instead of "\b{" {#} m/a\{#}b{cde/',
123 '/a\B{cde/' => 'Use "\B\{" instead of "\B{" {#} m/a\{#}B{cde/',
125 '/((x)/' => 'Unmatched ( {#} m/({#}(x)/',
127 "/x{$inf_p1}/" => "Quantifier in {,} bigger than $inf_m1 {#} m/x{{#}$inf_p1}/",
130 '/x**/' => 'Nested quantifiers {#} m/x**{#}/',
132 '/x[/' => 'Unmatched [ {#} m/x[{#}/',
134 '/*/', => 'Quantifier follows nothing {#} m/*{#}/',
136 '/\p{x/' => 'Missing right brace on \p{} {#} m/\p{{#}x/',
138 '/[\p{x]/' => 'Missing right brace on \p{} {#} m/[\p{{#}x]/',
140 '/(x)\2/' => 'Reference to nonexistent group {#} m/(x)\2{#}/',
142 '/\g/' => 'Unterminated \g... pattern {#} m/\g{#}/',
143 '/\g{1/' => 'Unterminated \g{...} pattern {#} m/\g{1{#}/',
145 'my $m = "\\\"; $m =~ $m', => 'Trailing \ in regex m/\/',
147 '/\x{1/' => 'Missing right brace on \x{} {#} m/\x{1{#}/',
148 '/\x{X/' => 'Missing right brace on \x{} {#} m/\x{{#}X/',
150 '/[\x{X]/' => 'Missing right brace on \x{} {#} m/[\x{{#}X]/',
151 '/[\x{A]/' => 'Missing right brace on \x{} {#} m/[\x{A{#}]/',
153 '/\o{1/' => 'Missing right brace on \o{ {#} m/\o{1{#}/',
154 '/\o{X/' => 'Missing right brace on \o{ {#} m/\o{{#}X/',
156 '/[\o{X]/' => 'Missing right brace on \o{ {#} m/[\o{{#}X]/',
157 '/[\o{7]/' => 'Missing right brace on \o{ {#} m/[\o{7{#}]/',
159 '/[[:barf:]]/' => 'POSIX class [:barf:] unknown {#} m/[[:barf:]{#}]/',
161 '/[[=barf=]]/' => 'POSIX syntax [= =] is reserved for future extensions {#} m/[[=barf=]{#}]/',
163 '/[[.barf.]]/' => 'POSIX syntax [. .] is reserved for future extensions {#} m/[[.barf.]{#}]/',
165 '/[z-a]/' => 'Invalid [] range "z-a" {#} m/[z-a{#}]/',
167 '/\p/' => 'Empty \p{} {#} m/\p{#}/',
169 '/\P{}/' => 'Empty \P{} {#} m/\P{{#}}/',
170 '/(?[[[:word]]])/' => "Unmatched ':' in POSIX class {#} m/(?[[[:word{#}]]])/",
171 '/(?[[:word]])/' => "Unmatched ':' in POSIX class {#} m/(?[[:word{#}]])/",
172 '/(?[[[:digit: ])/' => "Unmatched '[' in POSIX class {#} m/(?[[[:digit:{#} ])/",
173 '/(?[[:digit: ])/' => "Unmatched '[' in POSIX class {#} m/(?[[:digit:{#} ])/",
174 '/(?[[[::]]])/' => "POSIX class [::] unknown {#} m/(?[[[::]{#}]])/",
175 '/(?[[[:w:]]])/' => "POSIX class [:w:] unknown {#} m/(?[[[:w:]{#}]])/",
176 '/(?[[:w:]])/' => "POSIX class [:w:] unknown {#} m/(?[[:w:]{#}])/",
177 '/(?[a])/' => 'Unexpected character {#} m/(?[a{#}])/',
178 '/(?[\t])/l' => '(?[...]) not valid in locale {#} m/(?[{#}\t])/',
179 '/(?[ + \t ])/' => 'Unexpected binary operator \'+\' with no preceding operand {#} m/(?[ +{#} \t ])/',
180 '/(?[ \cK - ( + \t ) ])/' => 'Unexpected binary operator \'+\' with no preceding operand {#} m/(?[ \cK - ( +{#} \t ) ])/',
181 '/(?[ \cK ( \t ) ])/' => 'Unexpected \'(\' with no preceding operator {#} m/(?[ \cK ({#} \t ) ])/',
182 '/(?[ \cK \t ])/' => 'Operand with no preceding operator {#} m/(?[ \cK \t{#} ])/',
183 '/(?[ \0004 ])/' => 'Need exactly 3 octal digits {#} m/(?[ \0004 {#}])/',
184 '/(?[ \05 ])/' => 'Need exactly 3 octal digits {#} m/(?[ \05 {#}])/',
185 '/(?[ \o{1038} ])/' => 'Non-octal character {#} m/(?[ \o{1038{#}} ])/',
186 '/(?[ \o{} ])/' => 'Number with no digits {#} m/(?[ \o{}{#} ])/',
187 '/(?[ \x{defg} ])/' => 'Non-hex character {#} m/(?[ \x{defg{#}} ])/',
188 '/(?[ \xabcdef ])/' => 'Use \\x{...} for more than two hex characters {#} m/(?[ \xabc{#}def ])/',
189 '/(?[ \x{} ])/' => 'Number with no digits {#} m/(?[ \x{}{#} ])/',
190 '/(?[ \cK + ) ])/' => 'Unexpected \')\' {#} m/(?[ \cK + ){#} ])/',
191 '/(?[ \cK + ])/' => 'Incomplete expression within \'(?[ ])\' {#} m/(?[ \cK + {#}])/',
192 '/(?[ \p{foo} ])/' => 'Property \'foo\' is unknown {#} m/(?[ \p{foo}{#} ])/',
193 '/(?[ \p{ foo = bar } ])/' => 'Property \'foo = bar\' is unknown {#} m/(?[ \p{ foo = bar }{#} ])/',
194 '/(?[ \8 ])/' => 'Unrecognized escape \8 in character class {#} m/(?[ \8{#} ])/',
195 '/(?[ \t ]/' => 'Syntax error in (?[...]) in regex m/(?[ \t ]/',
196 '/(?[ [ \t ]/' => 'Syntax error in (?[...]) in regex m/(?[ [ \t ]/',
197 '/(?[ \t ] ]/' => 'Syntax error in (?[...]) in regex m/(?[ \t ] ]/',
198 '/(?[ [ ] ]/' => 'Syntax error in (?[...]) in regex m/(?[ [ ] ]/',
199 '/(?[ \t + \e # This was supposed to be a comment ])/' => 'Syntax error in (?[...]) in regex m/(?[ \t + \e # This was supposed to be a comment ])/',
200 '/(?[ ])/' => 'Incomplete expression within \'(?[ ])\' {#} m/(?[ {#}])/',
201 'm/(?[[a-\d]])/' => 'False [] range "a-\d" {#} m/(?[[a-\d{#}]])/',
202 'm/(?[[\w-x]])/' => 'False [] range "\w-" {#} m/(?[[\w-{#}x]])/',
203 'm/(?[[a-\pM]])/' => 'False [] range "a-\pM" {#} m/(?[[a-\pM{#}]])/',
204 'm/(?[[\pM-x]])/' => 'False [] range "\pM-" {#} m/(?[[\pM-{#}x]])/',
205 'm/(?[[\N{LATIN CAPITAL LETTER A WITH MACRON AND GRAVE}]])/' => '\N{} in character class restricted to one character {#} m/(?[[\N{U+100.300{#}}]])/',
206 'm/(?[ \p{Digit} & (?(?[ \p{Thai} | \p{Lao} ]))])/' => 'Sequence (?(...) not recognized {#} m/(?[ \p{Digit} & (?({#}?[ \p{Thai} | \p{Lao} ]))])/',
207 'm/(?[ \p{Digit} & (?:(?[ \p{Thai} | \p{Lao} ]))])/' => 'Expecting \'(?flags:(?[...\' {#} m/(?[ \p{Digit} & (?{#}:(?[ \p{Thai} | \p{Lao} ]))])/',
208 'm/\o{/' => 'Missing right brace on \o{ {#} m/\o{{#}/',
209 'm/\o/' => 'Missing braces on \o{} {#} m/\o{#}/',
210 'm/\o{}/' => 'Number with no digits {#} m/\o{}{#}/',
211 'm/[\o{]/' => 'Missing right brace on \o{ {#} m/[\o{{#}]/',
212 'm/[\o]/' => 'Missing braces on \o{} {#} m/[\o{#}]/',
213 'm/[\o{}]/' => 'Number with no digits {#} m/[\o{}{#}]/',
214 'm/(?^-i:foo)/' => 'Sequence (?^-...) not recognized {#} m/(?^-{#}i:foo)/',
215 'm/\87/' => 'Reference to nonexistent group {#} m/\87{#}/',
216 'm/a\87/' => 'Reference to nonexistent group {#} m/a\87{#}/',
217 'm/a\97/' => 'Reference to nonexistent group {#} m/a\97{#}/',
218 'm/(*DOOF)/' => 'Unknown verb pattern \'DOOF\' {#} m/(*DOOF){#}/',
219 'm/(?&a/' => 'Sequence (?&... not terminated {#} m/(?&a{#}/',
220 'm/(?P=/' => 'Sequence ?P=... not terminated {#} m/(?P={#}/',
221 "m/(?'/" => "Sequence (?'... not terminated {#} m/(?'{#}/",
222 "m/(?</" => "Sequence (?<... not terminated {#} m/(?<{#}/",
223 'm/(?&/' => 'Sequence (?&... not terminated {#} m/(?&{#}/',
224 'm/(?(</' => 'Sequence (?(<... not terminated {#} m/(?(<{#}/',
225 "m/(?('/" => "Sequence (?('... not terminated {#} m/(?('{#}/",
226 'm/\g{/' => 'Sequence \g{... not terminated {#} m/\g{{#}/',
227 'm/\k</' => 'Sequence \k<... not terminated {#} m/\k<{#}/',
228 'm/\cß/' => "Character following \"\\c\" must be printable ASCII",
229 '/((?# 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)/',
230 '/((?# 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)/',
233 my @death_utf8 = mark_as_utf8(
234 '/ネ[[=ネ=]]ネ/' => 'POSIX syntax [= =] is reserved for future extensions {#} m/ネ[[=ネ=]{#}]ネ/',
235 '/ネ(?<= .*)/' => 'Variable length lookbehind not implemented in regex m/ネ(?<= .*)/',
237 '/(?<= ネ{1000})/' => 'Lookbehind longer than 255 not implemented in regex m/(?<= ネ{1000})/',
239 '/ネ(?ネ)ネ/' => 'Sequence (?ネ...) not recognized {#} m/ネ(?ネ{#})ネ/',
241 '/ネ(?(1ネ))ネ/' => 'Switch condition not recognized {#} m/ネ(?(1ネ{#}))ネ/',
243 '/(?(1)ネ|y|ヌ)/' => 'Switch (?(condition)... contains too many branches {#} m/(?(1)ネ|y|{#}ヌ)/',
245 '/(?(ネ)y|ネ)/' => 'Unknown switch condition (?(...)) {#} m/(?(ネ{#})y|ネ)/',
247 '/ネ(?/' => 'Sequence (? incomplete {#} m/ネ(?{#}/',
249 '/ネ(?;ネ/' => 'Sequence (?;...) not recognized {#} m/ネ(?;{#}ネ/',
250 '/ネ(?<;ネ/' => 'Group name must start with a non-digit word character {#} m/ネ(?<;{#}ネ/',
251 '/ネ(?\ixネ/' => 'Sequence (?\...) not recognized {#} m/ネ(?\{#}ixネ/',
252 '/ネ(?^lu:ネ)/' => 'Regexp modifiers "l" and "u" are mutually exclusive {#} m/ネ(?^lu{#}:ネ)/',
253 '/ネ(?lil:ネ)/' => 'Regexp modifier "l" may not appear twice {#} m/ネ(?lil{#}:ネ)/',
254 '/ネ(?aaia:ネ)/' => 'Regexp modifier "a" may appear a maximum of twice {#} m/ネ(?aaia{#}:ネ)/',
255 '/ネ(?i-l:ネ)/' => 'Regexp modifier "l" may not appear after the "-" {#} m/ネ(?i-l{#}:ネ)/',
257 '/ネ((ネ)/' => 'Unmatched ( {#} m/ネ({#}(ネ)/',
259 "/ネ{$inf_p1}ネ/" => "Quantifier in {,} bigger than $inf_m1 {#} m/ネ{{#}$inf_p1}ネ/",
262 '/ネ**ネ/' => 'Nested quantifiers {#} m/ネ**{#}ネ/',
264 '/ネ[ネ/' => 'Unmatched [ {#} m/ネ[{#}ネ/',
266 '/*ネ/', => 'Quantifier follows nothing {#} m/*{#}ネ/',
268 '/ネ\p{ネ/' => 'Missing right brace on \p{} {#} m/ネ\p{{#}ネ/',
270 '/(ネ)\2ネ/' => 'Reference to nonexistent group {#} m/(ネ)\2{#}ネ/',
272 '/\g{ネ/; #no latin1' => 'Sequence \g{... not terminated {#} m/\g{ネ{#}/',
274 'my $m = "ネ\\\"; $m =~ $m', => 'Trailing \ in regex m/ネ\/',
276 '/\x{ネ/' => 'Missing right brace on \x{} {#} m/\x{{#}ネ/',
277 '/ネ[\x{ネ]ネ/' => 'Missing right brace on \x{} {#} m/ネ[\x{{#}ネ]ネ/',
278 '/ネ[\x{ネ]/' => 'Missing right brace on \x{} {#} m/ネ[\x{{#}ネ]/',
280 '/ネ\o{ネ/' => 'Missing right brace on \o{ {#} m/ネ\o{{#}ネ/',
281 '/ネ[[:ネ:]]ネ/' => 'POSIX class [:ネ:] unknown {#} m/ネ[[:ネ:]{#}]ネ/',
283 '/ネ[[=ネ=]]ネ/' => 'POSIX syntax [= =] is reserved for future extensions {#} m/ネ[[=ネ=]{#}]ネ/',
285 '/ネ[[.ネ.]]ネ/' => 'POSIX syntax [. .] is reserved for future extensions {#} m/ネ[[.ネ.]{#}]ネ/',
287 '/[ネ-a]ネ/' => 'Invalid [] range "ネ-a" {#} m/[ネ-a{#}]ネ/',
289 '/ネ\p{}ネ/' => 'Empty \p{} {#} m/ネ\p{{#}}ネ/',
291 '/ネ(?[[[:ネ]]])ネ/' => "Unmatched ':' in POSIX class {#} m/ネ(?[[[:ネ{#}]]])ネ/",
292 '/ネ(?[[[:ネ: ])ネ/' => "Unmatched '[' in POSIX class {#} m/ネ(?[[[:ネ:{#} ])ネ/",
293 '/ネ(?[[[::]]])ネ/' => "POSIX class [::] unknown {#} m/ネ(?[[[::]{#}]])ネ/",
294 '/ネ(?[[[:ネ:]]])ネ/' => "POSIX class [:ネ:] unknown {#} m/ネ(?[[[:ネ:]{#}]])ネ/",
295 '/ネ(?[[:ネ:]])ネ/' => "POSIX class [:ネ:] unknown {#} m/ネ(?[[:ネ:]{#}])ネ/",
296 '/ネ(?[ネ])ネ/' => 'Unexpected character {#} m/ネ(?[ネ{#}])ネ/',
297 '/ネ(?[ネ])/l' => '(?[...]) not valid in locale {#} m/ネ(?[{#}ネ])/',
298 '/ネ(?[ + [ネ] ])/' => 'Unexpected binary operator \'+\' with no preceding operand {#} m/ネ(?[ +{#} [ネ] ])/',
299 '/ネ(?[ \cK - ( + [ネ] ) ])/' => 'Unexpected binary operator \'+\' with no preceding operand {#} m/ネ(?[ \cK - ( +{#} [ネ] ) ])/',
300 '/ネ(?[ \cK ( [ネ] ) ])/' => 'Unexpected \'(\' with no preceding operator {#} m/ネ(?[ \cK ({#} [ネ] ) ])/',
301 '/ネ(?[ \cK [ネ] ])ネ/' => 'Operand with no preceding operator {#} m/ネ(?[ \cK [ネ{#}] ])ネ/',
302 '/ネ(?[ \0004 ])ネ/' => 'Need exactly 3 octal digits {#} m/ネ(?[ \0004 {#}])ネ/',
303 '/(?[ \o{ネ} ])ネ/' => 'Non-octal character {#} m/(?[ \o{ネ{#}} ])ネ/',
304 '/ネ(?[ \o{} ])ネ/' => 'Number with no digits {#} m/ネ(?[ \o{}{#} ])ネ/',
305 '/(?[ \x{ネ} ])ネ/' => 'Non-hex character {#} m/(?[ \x{ネ{#}} ])ネ/',
306 '/(?[ \p{ネ} ])/' => 'Property \'ネ\' is unknown {#} m/(?[ \p{ネ}{#} ])/',
307 '/(?[ \p{ ネ = bar } ])/' => 'Property \'ネ = bar\' is unknown {#} m/(?[ \p{ ネ = bar }{#} ])/',
308 '/ネ(?[ \t ]/' => 'Syntax error in (?[...]) in regex m/ネ(?[ \t ]/',
309 '/(?[ \t + \e # ネ This was supposed to be a comment ])/' => 'Syntax error in (?[...]) in regex m/(?[ \t + \e # ネ This was supposed to be a comment ])/',
310 'm/(*ネ)ネ/' => q<Unknown verb pattern 'ネ' {#} m/(*ネ){#}ネ/>,
311 '/\cネ/' => "Character following \"\\c\" must be printable ASCII",
313 push @death, @death_utf8;
315 # Tests involving a user-defined charnames translator are in pat_advanced.t
317 # In the following arrays of warnings, the value can be an array of things to
318 # expect. If the empty string, it means no warning should be raised.
321 ## Key-value pairs of code/error of code that should have non-fatal regexp warnings.
324 'm/\b*/' => '\b* matches null string many times {#} m/\b*{#}/',
325 'm/[:blank:]/' => 'POSIX syntax [: :] belongs inside character classes {#} m/[:blank:]{#}/',
327 "m'[\\y]'" => 'Unrecognized escape \y in character class passed through {#} m/[\y{#}]/',
329 'm/[a-\d]/' => 'False [] range "a-\d" {#} m/[a-\d{#}]/',
330 'm/[\w-x]/' => 'False [] range "\w-" {#} m/[\w-{#}x]/',
331 'm/[a-\pM]/' => 'False [] range "a-\pM" {#} m/[a-\pM{#}]/',
332 'm/[\pM-x]/' => 'False [] range "\pM-" {#} m/[\pM-{#}x]/',
333 "m'\\y'" => 'Unrecognized escape \y passed through {#} m/\y{#}/',
334 '/x{3,1}/' => 'Quantifier {n,m} with n > m can\'t match {#} m/x{3,1}{#}/',
335 '/\08/' => '\'\08\' resolved to \'\o{0}8\' {#} m/\08{#}/',
336 '/\018/' => '\'\018\' resolved to \'\o{1}8\' {#} m/\018{#}/',
337 '/[\08]/' => '\'\08\' resolved to \'\o{0}8\' {#} m/[\08{#}]/',
338 '/[\018]/' => '\'\018\' resolved to \'\o{1}8\' {#} m/[\018{#}]/',
339 '/(?=a)*/' => '(?=a)* matches null string many times {#} m/(?=a)*{#}/',
340 'my $x = \'\m\'; qr/a$x/' => 'Unrecognized escape \m passed through {#} m/a\m{#}/',
341 '/\q/' => 'Unrecognized escape \q passed through {#} m/\q{#}/',
342 '/\q{/' => 'Unrecognized escape \q{ passed through {#} m/\q{{#}/',
343 '/(?=a){1,3}/' => 'Quantifier unexpected on zero-length expression {#} m/(?=a){1,3}{#}/',
344 '/(a|b)(?=a){3}/' => 'Quantifier unexpected on zero-length expression {#} m/(a|b)(?=a){3}{#}/',
350 '/[\8\9]/' => ['Unrecognized escape \8 in character class passed through {#} m/[\8{#}\9]/',
351 'Unrecognized escape \9 in character class passed through {#} m/[\8\9{#}]/',
353 '/[:alpha:]/' => 'POSIX syntax [: :] belongs inside character classes {#} m/[:alpha:]{#}/',
354 '/[:zog:]/' => 'POSIX syntax [: :] belongs inside character classes {#} m/[:zog:]{#}/',
355 '/[.zog.]/' => 'POSIX syntax [. .] belongs inside character classes {#} m/[.zog.]{#}/',
357 '/[a-\d]/' => 'False [] range "a-\d" {#} m/[a-\d{#}]/',
358 '/[\d-b]/' => 'False [] range "\d-" {#} m/[\d-{#}b]/',
359 '/[\s-\d]/' => 'False [] range "\s-" {#} m/[\s-{#}\d]/',
360 '/[\d-\s]/' => 'False [] range "\d-" {#} m/[\d-{#}\s]/',
361 '/[a-[:digit:]]/' => 'False [] range "a-[:digit:]" {#} m/[a-[:digit:]{#}]/',
362 '/[[:digit:]-b]/' => 'False [] range "[:digit:]-" {#} m/[[:digit:]-{#}b]/',
363 '/[[:alpha:]-[:digit:]]/' => 'False [] range "[:alpha:]-" {#} m/[[:alpha:]-{#}[:digit:]]/',
364 '/[[:digit:]-[:alpha:]]/' => 'False [] range "[:digit:]-" {#} m/[[:digit:]-{#}[:alpha:]]/',
365 '/[a\zb]/' => 'Unrecognized escape \z in character class passed through {#} m/[a\z{#}b]/',
366 '/(?c)/' => 'Useless (?c) - use /gc modifier {#} m/(?c{#})/',
367 '/(?-c)/' => 'Useless (?-c) - don\'t use /gc modifier {#} m/(?-c{#})/',
368 '/(?g)/' => 'Useless (?g) - use /g modifier {#} m/(?g{#})/',
369 '/(?-g)/' => 'Useless (?-g) - don\'t use /g modifier {#} m/(?-g{#})/',
370 '/(?o)/' => 'Useless (?o) - use /o modifier {#} m/(?o{#})/',
371 '/(?-o)/' => 'Useless (?-o) - don\'t use /o modifier {#} m/(?-o{#})/',
372 '/(?g-o)/' => [ 'Useless (?g) - use /g modifier {#} m/(?g{#}-o)/',
373 'Useless (?-o) - don\'t use /o modifier {#} m/(?g-o{#})/',
375 '/(?g-c)/' => [ 'Useless (?g) - use /g modifier {#} m/(?g{#}-c)/',
376 'Useless (?-c) - don\'t use /gc modifier {#} m/(?g-c{#})/',
378 # (?c) means (?g) error won't be thrown
379 '/(?o-cg)/' => [ 'Useless (?o) - use /o modifier {#} m/(?o{#}-cg)/',
380 'Useless (?-c) - don\'t use /gc modifier {#} m/(?o-c{#}g)/',
382 '/(?ogc)/' => [ 'Useless (?o) - use /o modifier {#} m/(?o{#}gc)/',
383 'Useless (?g) - use /g modifier {#} m/(?og{#}c)/',
384 'Useless (?c) - use /gc modifier {#} m/(?ogc{#})/',
386 '/a{1,1}?/' => 'Useless use of greediness modifier \'?\' {#} m/a{1,1}?{#}/',
387 '/b{3} +/x' => 'Useless use of greediness modifier \'+\' {#} m/b{3} +{#}/',
390 my @warnings_utf8 = mark_as_utf8(
391 'm/ネ\b*ネ/' => '\b* matches null string many times {#} m/ネ\b*{#}ネ/',
392 '/(?=ネ)*/' => '(?=ネ)* matches null string many times {#} m/(?=ネ)*{#}/',
393 'm/ネ[:foo:]ネ/' => 'POSIX syntax [: :] belongs inside character classes {#} m/ネ[:foo:]{#}ネ/',
394 "m'ネ[\\y]ネ'" => 'Unrecognized escape \y in character class passed through {#} m/ネ[\y{#}]ネ/',
395 'm/ネ[ネ-\d]ネ/' => 'False [] range "ネ-\d" {#} m/ネ[ネ-\d{#}]ネ/',
396 'm/ネ[\w-ネ]ネ/' => 'False [] range "\w-" {#} m/ネ[\w-{#}ネ]ネ/',
397 'm/ネ[ネ-\pM]ネ/' => 'False [] range "ネ-\pM" {#} m/ネ[ネ-\pM{#}]ネ/',
398 '/ネ[ネ-[:digit:]]ネ/' => 'False [] range "ネ-[:digit:]" {#} m/ネ[ネ-[:digit:]{#}]ネ/',
399 '/ネ[\d-\s]ネ/' => 'False [] range "\d-" {#} m/ネ[\d-{#}\s]ネ/',
400 '/ネ[a\zb]ネ/' => 'Unrecognized escape \z in character class passed through {#} m/ネ[a\z{#}b]ネ/',
401 '/ネ(?c)ネ/' => 'Useless (?c) - use /gc modifier {#} m/ネ(?c{#})ネ/',
402 '/utf8 ネ (?ogc) ネ/' => [
403 'Useless (?o) - use /o modifier {#} m/utf8 ネ (?o{#}gc) ネ/',
404 'Useless (?g) - use /g modifier {#} m/utf8 ネ (?og{#}c) ネ/',
405 'Useless (?c) - use /gc modifier {#} m/utf8 ネ (?ogc{#}) ネ/',
410 push @warning, @warnings_utf8;
412 my @experimental_regex_sets = (
413 '/(?[ \t ])/' => 'The regex_sets feature is experimental {#} m/(?[{#} \t ])/',
414 'use utf8; /utf8 ネ (?[ [\tネ] ])/' => do { use utf8; 'The regex_sets feature is experimental {#} m/utf8 ネ (?[{#} [\tネ] ])/' },
415 '/noutf8 ネ (?[ [\tネ] ])/' => 'The regex_sets feature is experimental {#} m/noutf8 ネ (?[{#} [\tネ] ])/',
419 "/(?x)latin1\\\x{85}\x{85}\\\x{85}/" => 'Escape literal pattern white space under /x {#} ' . "m/(?x)latin1\\\x{85}\x{85}{#}\\\x{85}/",
420 'use utf8; /(?x)utf8\
\85\85\
\85/' => 'Escape literal pattern white space under /x {#} ' . "m/(?x)utf8\\\N{NEXT LINE}\N{NEXT LINE}{#}\\\N{NEXT LINE}/",
423 while (my ($regex, $expect) = splice @death, 0, 2) {
424 my $expect = fixup_expect($expect);
425 no warnings 'experimental::regex_sets';
426 # skip the utf8 test on EBCDIC since they do not die
427 next if $::IS_EBCDIC && $regex =~ /utf8/;
432 like($@, qr/\Q$expect/, $regex);
433 }, undef, "... and died without any other warnings");
436 foreach my $ref (\@warning, \@experimental_regex_sets, \@deprecated) {
437 my $warning_type = ($ref == \@warning)
439 : ($ref == \@deprecated)
440 ? 'regexp, deprecated'
441 : 'experimental::regex_sets';
442 while (my ($regex, $expect) = splice @$ref, 0, 2) {
443 my @expect = fixup_expect($expect);
449 if (is($@, "", "$regex did not die")) {
450 my @got = capture_warnings(sub {
454 if (! is(scalar @got, scalar @expect, "... and gave expected number ($count) of warnings")) {
455 if (@got < @expect) {
457 note "Expected warnings not gotten:\n\t" . join "\n\t", @expect[$count .. $#expect];
460 note "Unexpected warnings gotten:\n\t" . join("\n\t", @got[$count .. $#got]);
463 foreach my $i (0 .. $count - 1) {
464 if (! like($got[$i], qr/\Q$expect[$i]/, "... and gave expected warning")) {
467 diag("GOT\n'$got[$i]'\nEXPECT\n'$expect[$i]'");
470 ok (0 == capture_warnings(sub {
472 eval "no warnings '$warning_type'; $regex;" }
474 "... and turning off '$warning_type' warnings suppressed it");
475 # Test that whether the warning is on by default is
476 # correct. Experimental and deprecated warnings are;
477 # others are not. This test relies on the fact that we
478 # are outside the scope of any ‘use warnings’.
480 my $on = 'on' x ($warning_type ne 'regexp');
482 capture_warnings(sub { $_ = "x"; eval $regex }),
483 "... and the warning is " . ($on||'off')