lexical warnings update for docs and tests (from Paul Marquess)
[p5sagit/p5-mst-13.2.git] / t / op / pat.t
CommitLineData
8d063cd8 1#!./perl
8d37f932 2#
3# This is a home for regular expression tests that don't fit into
4# the format supported by op/regexp.t. If you want to add a test
5# that does fit that format, add it to op/re_tests, not here.
8d063cd8 6
b520c7f3 7print "1..211\n";
8d37f932 8
e4d48cc9 9BEGIN {
10 chdir 't' if -d 't';
93430cb4 11 unshift @INC, "../lib" if -d "../lib";
e4d48cc9 12}
8d37f932 13eval 'use Config'; # Defaults assumed if this fails
8d063cd8 14
9c63abab 15# XXX known to leak scalars
16$ENV{PERL_DESTRUCT_LEVEL} = 0 unless $ENV{PERL_DESTRUCT_LEVEL} > 3;
eec2d3df 17
8d063cd8 18$x = "abc\ndef\n";
19
20if ($x =~ /^abc/) {print "ok 1\n";} else {print "not ok 1\n";}
21if ($x !~ /^def/) {print "ok 2\n";} else {print "not ok 2\n";}
22
23$* = 1;
24if ($x =~ /^def/) {print "ok 3\n";} else {print "not ok 3\n";}
25$* = 0;
26
27$_ = '123';
28if (/^([0-9][0-9]*)/) {print "ok 4\n";} else {print "not ok 4\n";}
29
30if ($x =~ /^xxx/) {print "not ok 5\n";} else {print "ok 5\n";}
31if ($x !~ /^abc/) {print "not ok 6\n";} else {print "ok 6\n";}
32
33if ($x =~ /def/) {print "ok 7\n";} else {print "not ok 7\n";}
34if ($x !~ /def/) {print "not ok 8\n";} else {print "ok 8\n";}
35
36if ($x !~ /.def/) {print "ok 9\n";} else {print "not ok 9\n";}
37if ($x =~ /.def/) {print "not ok 10\n";} else {print "ok 10\n";}
38
39if ($x =~ /\ndef/) {print "ok 11\n";} else {print "not ok 11\n";}
40if ($x !~ /\ndef/) {print "not ok 12\n";} else {print "ok 12\n";}
41
42$_ = 'aaabbbccc';
43if (/(a*b*)(c*)/ && $1 eq 'aaabbb' && $2 eq 'ccc') {
44 print "ok 13\n";
45} else {
46 print "not ok 13\n";
47}
48if (/(a+b+c+)/ && $1 eq 'aaabbbccc') {
49 print "ok 14\n";
50} else {
51 print "not ok 14\n";
52}
53
54if (/a+b?c+/) {print "not ok 15\n";} else {print "ok 15\n";}
55
56$_ = 'aaabccc';
57if (/a+b?c+/) {print "ok 16\n";} else {print "not ok 16\n";}
58if (/a*b+c*/) {print "ok 17\n";} else {print "not ok 17\n";}
59
60$_ = 'aaaccc';
61if (/a*b?c*/) {print "ok 18\n";} else {print "not ok 18\n";}
62if (/a*b+c*/) {print "not ok 19\n";} else {print "ok 19\n";}
63
64$_ = 'abcdef';
65if (/bcd|xyz/) {print "ok 20\n";} else {print "not ok 20\n";}
66if (/xyz|bcd/) {print "ok 21\n";} else {print "not ok 21\n";}
67
68if (m|bc/*d|) {print "ok 22\n";} else {print "not ok 22\n";}
378cc40b 69
70if (/^$_$/) {print "ok 23\n";} else {print "not ok 23\n";}
71
72$* = 1; # test 3 only tested the optimized version--this one is for real
73if ("ab\ncd\n" =~ /^cd/) {print "ok 24\n";} else {print "not ok 24\n";}
74$* = 0;
75
76$XXX{123} = 123;
77$XXX{234} = 234;
78$XXX{345} = 345;
79
80@XXX = ('ok 25','not ok 25', 'ok 26','not ok 26','not ok 27');
c6aa4a32 81while ($_ = shift(@XXX)) {
378cc40b 82 ?(.*)? && (print $1,"\n");
83 /not/ && reset;
84 /not ok 26/ && reset 'X';
85}
86
a0d0e21e 87while (($key,$val) = each(%XXX)) {
378cc40b 88 print "not ok 27\n";
89 exit;
90}
91
92print "ok 27\n";
93
94'cde' =~ /[^ab]*/;
95'xyz' =~ //;
96if ($& eq 'xyz') {print "ok 28\n";} else {print "not ok 28\n";}
97
98$foo = '[^ab]*';
99'cde' =~ /$foo/;
100'xyz' =~ //;
101if ($& eq 'xyz') {print "ok 29\n";} else {print "not ok 29\n";}
102
103$foo = '[^ab]*';
104'cde' =~ /$foo/;
105'xyz' =~ /$null/;
106if ($& eq 'xyz') {print "ok 30\n";} else {print "not ok 30\n";}
a687059c 107
108$_ = 'abcdefghi';
109/def/; # optimized up to cmd
110if ("$`:$&:$'" eq 'abc:def:ghi') {print "ok 31\n";} else {print "not ok 31\n";}
111
112/cde/ + 0; # optimized only to spat
113if ("$`:$&:$'" eq 'ab:cde:fghi') {print "ok 32\n";} else {print "not ok 32\n";}
114
115/[d][e][f]/; # not optimized
116if ("$`:$&:$'" eq 'abc:def:ghi') {print "ok 33\n";} else {print "not ok 33\n";}
117
118$_ = 'now is the {time for all} good men to come to.';
119/ {([^}]*)}/;
120if ($1 eq 'time for all') {print "ok 34\n";} else {print "not ok 34 $1\n";}
121
122$_ = 'xxx {3,4} yyy zzz';
123print /( {3,4})/ ? "ok 35\n" : "not ok 35\n";
124print $1 eq ' ' ? "ok 36\n" : "not ok 36\n";
125print /( {4,})/ ? "not ok 37\n" : "ok 37\n";
126print /( {2,3}.)/ ? "ok 38\n" : "not ok 38\n";
127print $1 eq ' y' ? "ok 39\n" : "not ok 39\n";
128print /(y{2,3}.)/ ? "ok 40\n" : "not ok 40\n";
129print $1 eq 'yyy ' ? "ok 41\n" : "not ok 41\n";
130print /x {3,4}/ ? "not ok 42\n" : "ok 42\n";
131print /^xxx {3,4}/ ? "not ok 43\n" : "ok 43\n";
352d5a3a 132
133$_ = "now is the time for all good men to come to.";
134@words = /(\w+)/g;
135print join(':',@words) eq "now:is:the:time:for:all:good:men:to:come:to"
136 ? "ok 44\n"
137 : "not ok 44\n";
138
139@words = ();
140while (/\w+/g) {
141 push(@words, $&);
142}
143print join(':',@words) eq "now:is:the:time:for:all:good:men:to:come:to"
144 ? "ok 45\n"
145 : "not ok 45\n";
146
147@words = ();
71be2cbc 148pos = 0;
352d5a3a 149while (/to/g) {
150 push(@words, $&);
151}
152print join(':',@words) eq "to:to"
153 ? "ok 46\n"
71be2cbc 154 : "not ok 46 `@words'\n";
352d5a3a 155
71be2cbc 156pos $_ = 0;
352d5a3a 157@words = /to/g;
158print join(':',@words) eq "to:to"
159 ? "ok 47\n"
71be2cbc 160 : "not ok 47 `@words'\n";
352d5a3a 161
162$_ = "abcdefghi";
163
164$pat1 = 'def';
165$pat2 = '^def';
166$pat3 = '.def.';
167$pat4 = 'abc';
168$pat5 = '^abc';
169$pat6 = 'abc$';
170$pat7 = 'ghi';
171$pat8 = '\w*ghi';
172$pat9 = 'ghi$';
173
174$t1=$t2=$t3=$t4=$t5=$t6=$t7=$t8=$t9=0;
175
176for $iter (1..5) {
177 $t1++ if /$pat1/o;
178 $t2++ if /$pat2/o;
179 $t3++ if /$pat3/o;
180 $t4++ if /$pat4/o;
181 $t5++ if /$pat5/o;
182 $t6++ if /$pat6/o;
183 $t7++ if /$pat7/o;
184 $t8++ if /$pat8/o;
185 $t9++ if /$pat9/o;
186}
187
188$x = "$t1$t2$t3$t4$t5$t6$t7$t8$t9";
189print $x eq '505550555' ? "ok 48\n" : "not ok 48 $x\n";
1462b684 190
191$xyz = 'xyz';
192print "abc" =~ /^abc$|$xyz/ ? "ok 49\n" : "not ok 49\n";
193
194# perl 4.009 says "unmatched ()"
195eval '"abc" =~ /a(bc$)|$xyz/; $result = "$&:$1"';
196print $@ eq "" ? "ok 50\n" : "not ok 50\n";
197print $result eq "abc:bc" ? "ok 51\n" : "not ok 51\n";
a0d0e21e 198
199
200$_="abcfooabcbar";
201$x=/abc/g;
202print $` eq "" ? "ok 52\n" : "not ok 52\n" if $x;
203$x=/abc/g;
204print $` eq "abcfoo" ? "ok 53\n" : "not ok 53\n" if $x;
205$x=/abc/g;
206print $x == 0 ? "ok 54\n" : "not ok 54\n";
71be2cbc 207pos = 0;
a0d0e21e 208$x=/ABC/gi;
209print $` eq "" ? "ok 55\n" : "not ok 55\n" if $x;
210$x=/ABC/gi;
211print $` eq "abcfoo" ? "ok 56\n" : "not ok 56\n" if $x;
212$x=/ABC/gi;
213print $x == 0 ? "ok 57\n" : "not ok 57\n";
71be2cbc 214pos = 0;
a0d0e21e 215$x=/abc/g;
216print $' eq "fooabcbar" ? "ok 58\n" : "not ok 58\n" if $x;
217$x=/abc/g;
218print $' eq "bar" ? "ok 59\n" : "not ok 59\n" if $x;
219$_ .= '';
220@x=/abc/g;
221print scalar @x == 2 ? "ok 60\n" : "not ok 60\n";
71be2cbc 222
223$_ = "abdc";
224pos $_ = 2;
c90c0ff4 225/\Gc/gc;
71be2cbc 226print "not " if (pos $_) != 2;
227print "ok 61\n";
c90c0ff4 228/\Gc/g;
229print "not " if defined pos $_;
230print "ok 62\n";
c277df42 231
232$out = 1;
233'abc' =~ m'a(?{ $out = 2 })b';
234print "not " if $out != 2;
235print "ok 63\n";
236
237$out = 1;
238'abc' =~ m'a(?{ $out = 3 })c';
239print "not " if $out != 1;
240print "ok 64\n";
241
242$_ = 'foobar1 bar2 foobar3 barfoobar5 foobar6';
243@out = /(?<!foo)bar./g;
244print "not " if "@out" ne 'bar2 barf';
245print "ok 65\n";
246
8d37f932 247# Tests which depend on REG_INFTY
248$reg_infty = defined $Config{reg_infty} ? $Config{reg_infty} : 32767;
249$reg_infty_m = $reg_infty - 1; $reg_infty_p = $reg_infty + 1;
250
251# As well as failing if the pattern matches do unexpected things, the
252# next three tests will fail if you should have picked up a lower-than-
253# default value for $reg_infty from Config.pm, but have not.
254
255undef $@;
256print "not " if eval q(('aaa' =~ /(a{1,$reg_infty_m})/)[0] ne 'aaa') || $@;
257print "ok 66\n";
258
259undef $@;
260print "not " if eval q(('a' x $reg_infty_m) !~ /a{$reg_infty_m}/) || $@;
261print "ok 67\n";
262
263undef $@;
264print "not " if eval q(('a' x ($reg_infty_m - 1)) =~ /a{$reg_infty_m}/) || $@;
265print "ok 68\n";
266
267undef $@;
268eval "'aaa' =~ /a{1,$reg_infty}/";
269print "not " if $@ !~ m%^\Q/a{1,$reg_infty}/: Quantifier in {,} bigger than%;
270print "ok 69\n";
271
272eval "'aaa' =~ /a{1,$reg_infty_p}/";
273print "not "
274 if $@ !~ m%^\Q/a{1,$reg_infty_p}/: Quantifier in {,} bigger than%;
275print "ok 70\n";
276undef $@;
277
278# Poke a couple more parse failures
279
280$context = 'x' x 256;
281eval qq("${context}y" =~ /(?<=$context)y/);
282print "not " if $@ !~ m%^\Q/(?<=\Ex+/: lookbehind longer than 255 not%;
283print "ok 71\n";
284
b8c5462f 285# removed test
8d37f932 286print "ok 72\n";
287
c277df42 288# Long Monsters
8d37f932 289$test = 73;
c277df42 290for $l (125, 140, 250, 270, 300000, 30) { # Ordered to free memory
291 $a = 'a' x $l;
292 print "# length=$l\nnot " unless "ba$a=" =~ /a$a=/;
293 print "ok $test\n";
294 $test++;
295
296 print "not " if "b$a=" =~ /a$a=/;
297 print "ok $test\n";
298 $test++;
299}
300
301# 20000 nodes, each taking 3 words per string, and 1 per branch
302$long_constant_len = join '|', 12120 .. 32645;
303$long_var_len = join '|', 8120 .. 28645;
304%ans = ( 'ax13876y25677lbc' => 1,
305 'ax13876y25677mcb' => 0, # not b.
306 'ax13876y35677nbc' => 0, # Num too big
307 'ax13876y25677y21378obc' => 1,
308 'ax13876y25677y21378zbc' => 0, # Not followed by [k-o]
309 'ax13876y25677y21378y21378kbc' => 1,
310 'ax13876y25677y21378y21378kcb' => 0, # Not b.
311 'ax13876y25677y21378y21378y21378kbc' => 0, # 5 runs
312 );
313
314for ( keys %ans ) {
315 print "# const-len `$_' not => $ans{$_}\nnot "
316 if $ans{$_} xor /a(?=([yx]($long_constant_len)){2,4}[k-o]).*b./o;
317 print "ok $test\n";
318 $test++;
319 print "# var-len `$_' not => $ans{$_}\nnot "
320 if $ans{$_} xor /a(?=([yx]($long_var_len)){2,4}[k-o]).*b./o;
321 print "ok $test\n";
322 $test++;
323}
324
325$_ = " a (bla()) and x(y b((l)u((e))) and b(l(e)e)e";
326$expect = "(bla()) ((l)u((e))) (l(e)e)";
327
328sub matchit {
cc6b7395 329 m/
c277df42 330 (
331 \(
332 (?{ $c = 1 }) # Initialize
333 (?:
334 (?(?{ $c == 0 }) # PREVIOUS iteration was OK, stop the loop
335 (?!
336 ) # Fail: will unwind one iteration back
337 )
338 (?:
339 [^()]+ # Match a big chunk
340 (?=
341 [()]
342 ) # Do not try to match subchunks
343 |
344 \(
345 (?{ ++$c })
346 |
347 \)
348 (?{ --$c })
349 )
350 )+ # This may not match with different subblocks
351 )
352 (?(?{ $c != 0 })
353 (?!
354 ) # Fail
355 ) # Otherwise the chunk 1 may succeed with $c>0
cc6b7395 356 /xg;
c277df42 357}
358
0f5d15d6 359@ans = ();
c277df42 360push @ans, $res while $res = matchit;
361
362print "# ans='@ans'\n# expect='$expect'\nnot " if "@ans" ne "1 1 1";
363print "ok $test\n";
364$test++;
365
366@ans = matchit;
367
368print "# ans='@ans'\n# expect='$expect'\nnot " if "@ans" ne $expect;
369print "ok $test\n";
370$test++;
371
96776eda 372print "not " unless "abc" =~ /^(??{"a"})b/;
373print "ok $test\n";
374$test++;
375
0f5d15d6 376my $matched;
14455d6c 377$matched = qr/\((?:(?>[^()]+)|(??{$matched}))*\)/;
0f5d15d6 378
379@ans = @ans1 = ();
380push(@ans, $res), push(@ans1, $&) while $res = m/$matched/g;
381
382print "# ans='@ans'\n# expect='$expect'\nnot " if "@ans" ne "1 1 1";
383print "ok $test\n";
384$test++;
385
386print "# ans1='@ans1'\n# expect='$expect'\nnot " if "@ans1" ne $expect;
387print "ok $test\n";
388$test++;
389
390@ans = m/$matched/g;
391
392print "# ans='@ans'\n# expect='$expect'\nnot " if "@ans" ne $expect;
393print "ok $test\n";
394$test++;
395
c277df42 396@ans = ('a/b' =~ m%(.*/)?(.*)%); # Stack may be bad
397print "not " if "@ans" ne 'a/ b';
398print "ok $test\n";
399$test++;
400
cc6b7395 401$code = '{$blah = 45}';
c277df42 402$blah = 12;
2cd61cdb 403eval { /(?$code)/ };
404print "not " unless $@ and $@ =~ /not allowed at runtime/ and $blah == 12;
e4d48cc9 405print "ok $test\n";
406$test++;
407
2cd61cdb 408for $code ('{$blah = 45}','=xx') {
409 $blah = 12;
410 $res = eval { "xx" =~ /(?$code)/o };
411 if ($code eq '=xx') {
412 print "#'$@','$res','$blah'\nnot " unless not $@ and $res;
413 } else {
414 print "#'$@','$res','$blah'\nnot " unless $@ and $@ =~ /not allowed at runtime/ and $blah == 12;
415 }
416 print "ok $test\n";
417 $test++;
418}
419
e4d48cc9 420$code = '{$blah = 45}';
421$blah = 12;
422eval "/(?$code)/";
cc6b7395 423print "not " if $blah != 45;
424print "ok $test\n";
425$test++;
426
427$blah = 12;
428/(?{$blah = 45})/;
c277df42 429print "not " if $blah != 45;
430print "ok $test\n";
431$test++;
432
74d6a13a 433$x = 'banana';
434$x =~ /.a/g;
435print "not " unless pos($x) == 2;
436print "ok $test\n";
437$test++;
438
439$x =~ /.z/gc;
440print "not " unless pos($x) == 2;
441print "ok $test\n";
442$test++;
443
444sub f {
445 my $p = $_[0];
446 return $p;
447}
448
449$x =~ /.a/g;
450print "not " unless f(pos($x)) == 4;
451print "ok $test\n";
452$test++;
4599a1de 453
ce862d02 454$x = $^R = 67;
455'foot' =~ /foo(?{$x = 12; 75})[t]/;
456print "not " unless $^R eq '75';
457print "ok $test\n";
458$test++;
459
460$x = $^R = 67;
461'foot' =~ /foo(?{$x = 12; 75})[xy]/;
462print "not " unless $^R eq '67' and $x eq '12';
463print "ok $test\n";
464$test++;
465
466$x = $^R = 67;
467'foot' =~ /foo(?{ $^R + 12 })((?{ $x = 12; $^R + 17 })[xy])?/;
468print "not " unless $^R eq '79' and $x eq '12';
469print "ok $test\n";
470$test++;
471
8782bef2 472print "not " unless qr/\b\v$/i eq '(?i-xsm:\bv$)';
473print "ok $test\n";
474$test++;
475
476print "not " unless qr/\b\v$/s eq '(?s-xim:\bv$)';
477print "ok $test\n";
478$test++;
479
480print "not " unless qr/\b\v$/m eq '(?m-xis:\bv$)';
481print "ok $test\n";
482$test++;
483
484print "not " unless qr/\b\v$/x eq '(?x-ism:\bv$)';
485print "ok $test\n";
486$test++;
487
488print "not " unless qr/\b\v$/xism eq '(?msix:\bv$)';
489print "ok $test\n";
490$test++;
491
492print "not " unless qr/\b\v$/ eq '(?-xism:\bv$)';
97197631 493print "ok $test\n";
494$test++;
495
7e5428c5 496$_ = 'xabcx';
497foreach $ans ('', 'c') {
498 /(?<=(?=a)..)((?=c)|.)/g;
499 print "not " unless $1 eq $ans;
500 print "ok $test\n";
501 $test++;
502}
503
504$_ = 'a';
505foreach $ans ('', 'a', '') {
506 /^|a|$/g;
507 print "not " unless $& eq $ans;
508 print "ok $test\n";
509 $test++;
510}
511
09f25ae4 512sub prefixify {
513 my($v,$a,$b,$res) = @_;
514 $v =~ s/\Q$a\E/$b/;
515 print "not " unless $res eq $v;
516 print "ok $test\n";
517 $test++;
518}
519prefixify('/a/b/lib/arch', "/a/b/lib", 'X/lib', 'X/lib/arch');
520prefixify('/a/b/man/arch', "/a/b/man", 'X/man', 'X/man/arch');
521
522$_ = 'var="foo"';
523/(\")/;
524print "not " unless $1 and /$1/;
525print "ok $test\n";
526$test++;
527
8782bef2 528$a=qr/(?{++$b})/;
2cd61cdb 529$b = 7;
530/$a$a/;
531print "not " unless $b eq '9';
532print "ok $test\n";
533$test++;
534
535$c="$a";
536/$a$a/;
537print "not " unless $b eq '11';
538print "ok $test\n";
539$test++;
540
541{
542 use re "eval";
543 /$a$c$a/;
544 print "not " unless $b eq '14';
545 print "ok $test\n";
546 $test++;
547
548 no re "eval";
549 $match = eval { /$a$c$a/ };
550 print "not "
551 unless $b eq '14' and $@ =~ /Eval-group not allowed/ and not $match;
552 print "ok $test\n";
553 $test++;
554}
cbce877f 555
556{
557 package aa;
558 $c = 2;
559 $::c = 3;
560 '' =~ /(?{ $c = 4 })/;
561 print "not " unless $c == 4;
562}
563print "ok $test\n";
564$test++;
565print "not " unless $c == 3;
566print "ok $test\n";
567$test++;
2cd61cdb 568
4599a1de 569sub must_warn_pat {
570 my $warn_pat = shift;
571 return sub { print "not " unless $_[0] =~ /$warn_pat/ }
572}
573
574sub must_warn {
575 my ($warn_pat, $code) = @_;
9f1b1f2d 576 local %SIG;
577 eval 'BEGIN { use warnings; $SIG{__WARN__} = $warn_pat };' . $code;
4599a1de 578 print "ok $test\n";
579 $test++;
580}
581
582
583sub make_must_warn {
584 my $warn_pat = shift;
585 return sub { must_warn(must_warn_pat($warn_pat)) }
586}
587
588my $for_future = make_must_warn('reserved for future extensions');
589
590&$for_future('q(a:[b]:) =~ /[x[:foo:]]/');
591&$for_future('q(a=[b]=) =~ /[x[=foo=]]/');
592&$for_future('q(a.[b].) =~ /[x[.foo.]]/');
f7e33566 593
594# test if failure of patterns returns empty list
595$_ = 'aaa';
596@_ = /bbb/;
597print "not " if @_;
598print "ok $test\n";
599$test++;
600
601@_ = /bbb/g;
602print "not " if @_;
603print "ok $test\n";
604$test++;
605
606@_ = /(bbb)/;
607print "not " if @_;
608print "ok $test\n";
609$test++;
610
611@_ = /(bbb)/g;
612print "not " if @_;
613print "ok $test\n";
614$test++;
615
6cef1e77 616/a(?=.$)/;
617print "not " if $#+ != 0 or $#- != 0;
618print "ok $test\n";
619$test++;
620
621print "not " if $+[0] != 2 or $-[0] != 1;
622print "ok $test\n";
623$test++;
624
625print "not "
626 if defined $+[1] or defined $-[1] or defined $+[2] or defined $-[2];
627print "ok $test\n";
628$test++;
629
630/a(a)(a)/;
631print "not " if $#+ != 2 or $#- != 2;
632print "ok $test\n";
633$test++;
634
635print "not " if $+[0] != 3 or $-[0] != 0;
636print "ok $test\n";
637$test++;
638
639print "not " if $+[1] != 2 or $-[1] != 1;
640print "ok $test\n";
641$test++;
642
643print "not " if $+[2] != 3 or $-[2] != 2;
644print "ok $test\n";
645$test++;
646
647print "not "
648 if defined $+[3] or defined $-[3] or defined $+[4] or defined $-[4];
649print "ok $test\n";
650$test++;
651
652/.(a)(b)?(a)/;
653print "not " if $#+ != 3 or $#- != 3;
654print "ok $test\n";
655$test++;
656
657print "not " if $+[0] != 3 or $-[0] != 0;
658print "ok $test\n";
659$test++;
660
661print "not " if $+[1] != 2 or $-[1] != 1;
662print "ok $test\n";
663$test++;
664
665print "not " if $+[3] != 3 or $-[3] != 2;
666print "ok $test\n";
667$test++;
668
669print "not "
670 if defined $+[2] or defined $-[2] or defined $+[4] or defined $-[4];
671print "ok $test\n";
672$test++;
673
674/.(a)/;
675print "not " if $#+ != 1 or $#- != 1;
676print "ok $test\n";
677$test++;
678
679print "not " if $+[0] != 2 or $-[0] != 0;
680print "ok $test\n";
681$test++;
682
683print "not " if $+[1] != 2 or $-[1] != 1;
684print "ok $test\n";
685$test++;
686
687print "not "
688 if defined $+[2] or defined $-[2] or defined $+[3] or defined $-[3];
689print "ok $test\n";
690$test++;
691
8f580fb8 692/.(a)(ba*)?/;
693print "#$#-..$#+\nnot " if $#+ != 2 or $#- != 1;
694print "ok $test\n";
695$test++;
696
ad94a511 697$_ = 'aaa';
698pos = 1;
699@a = /\Ga/g;
700print "not " unless "@a" eq "a a";
701print "ok $test\n";
702$test++;
703
22e551b9 704$str = 'abcde';
705pos $str = 2;
706
707print "not " if $str =~ /^\G/;
708print "ok $test\n";
709$test++;
710
711print "not " if $str =~ /^.\G/;
712print "ok $test\n";
713$test++;
714
715print "not " unless $str =~ /^..\G/;
716print "ok $test\n";
717$test++;
718
719print "not " if $str =~ /^...\G/;
720print "ok $test\n";
721$test++;
722
723print "not " unless $str =~ /.\G./ and $& eq 'bc';
724print "ok $test\n";
725$test++;
726
727print "not " unless $str =~ /\G../ and $& eq 'cd';
728print "ok $test\n";
729$test++;
730
9661b544 731undef $foo; undef $bar;
732print "#'$str','$foo','$bar'\nnot "
733 unless $str =~ /b(?{$foo = $_; $bar = pos})c/
734 and $foo eq 'abcde' and $bar eq 2;
735print "ok $test\n";
736$test++;
737
738undef $foo; undef $bar;
739pos $str = undef;
740print "#'$str','$foo','$bar'\nnot "
741 unless $str =~ /b(?{$foo = $_; $bar = pos})c/g
742 and $foo eq 'abcde' and $bar eq 2 and pos $str eq 3;
743print "ok $test\n";
744$test++;
745
746$_ = $str;
747
748undef $foo; undef $bar;
749print "#'$str','$foo','$bar'\nnot "
750 unless /b(?{$foo = $_; $bar = pos})c/
751 and $foo eq 'abcde' and $bar eq 2;
752print "ok $test\n";
753$test++;
754
755undef $foo; undef $bar;
756print "#'$str','$foo','$bar'\nnot "
757 unless /b(?{$foo = $_; $bar = pos})c/g
758 and $foo eq 'abcde' and $bar eq 2 and pos eq 3;
759print "ok $test\n";
760$test++;
761
762undef $foo; undef $bar;
763pos = undef;
7641 while /b(?{$foo = $_; $bar = pos})c/g;
765print "#'$str','$foo','$bar'\nnot "
766 unless $foo eq 'abcde' and $bar eq 2 and not defined pos;
767print "ok $test\n";
768$test++;
769
770undef $foo; undef $bar;
771$_ = 'abcde|abcde';
772print "#'$str','$foo','$bar','$_'\nnot "
773 unless s/b(?{$foo = $_; $bar = pos})c/x/g and $foo eq 'abcde|abcde'
774 and $bar eq 8 and $_ eq 'axde|axde';
775print "ok $test\n";
776$test++;
777
5c5e4c24 778@res = ();
779# List context:
780$_ = 'abcde|abcde';
781@dummy = /([ace]).(?{push @res, $1,$2})([ce])(?{push @res, $1,$2})/g;
782@res = map {defined $_ ? "'$_'" : 'undef'} @res;
783$res = "@res";
784print "#'@res' '$_'\nnot "
785 unless "@res" eq "'a' undef 'a' 'c' 'e' undef 'a' undef 'a' 'c'";
786print "ok $test\n";
787$test++;
788
789@res = ();
790@dummy = /([ace]).(?{push @res, $`,$&,$'})([ce])(?{push @res, $`,$&,$'})/g;
791@res = map {defined $_ ? "'$_'" : 'undef'} @res;
792$res = "@res";
793print "#'@res' '$_'\nnot "
794 unless "@res" eq
795 "'' 'ab' 'cde|abcde' " .
796 "'' 'abc' 'de|abcde' " .
797 "'abcd' 'e|' 'abcde' " .
798 "'abcde|' 'ab' 'cde' " .
799 "'abcde|' 'abc' 'de'" ;
800print "ok $test\n";
801$test++;
802
b7a35066 803#Some more \G anchor checks
804$foo='aabbccddeeffgg';
805
806pos($foo)=1;
807
808$foo=~/.\G(..)/g;
809print "not " unless($1 eq 'ab');
810print "ok $test\n";
811$test++;
812
813pos($foo) += 1;
814$foo=~/.\G(..)/g;
815print "not " unless($1 eq 'cc');
816print "ok $test\n";
817$test++;
818
819pos($foo) += 1;
820$foo=~/.\G(..)/g;
821print "not " unless($1 eq 'de');
822print "ok $test\n";
823$test++;
824
0ef3e39e 825print "not " unless $foo =~ /\Gef/g;
826print "ok $test\n";
827$test++;
828
b7a35066 829undef pos $foo;
830
831$foo=~/\G(..)/g;
832print "not " unless($1 eq 'aa');
833print "ok $test\n";
834$test++;
835
836$foo=~/\G(..)/g;
837print "not " unless($1 eq 'bb');
838print "ok $test\n";
839$test++;
840
841pos($foo)=5;
842$foo=~/\G(..)/g;
843print "not " unless($1 eq 'cd');
844print "ok $test\n";
845$test++;
846
e60df1fa 847$_='123x123';
848@res = /(\d*|x)/g;
849print "not " unless('123||x|123|' eq join '|', @res);
850print "ok $test\n";
851$test++;
852
9d080a66 853# see if matching against temporaries (created via pp_helem()) is safe
854{ foo => "ok $test\n".$^X }->{foo} =~ /^(.*)\n/g;
855print "$1\n";
856$test++;
857
cf93c79d 858# See if $i work inside (?{}) in the presense of saved substrings and
859# changing $_
860@a = qw(foo bar);
861@b = ();
862s/(\w)(?{push @b, $1})/,$1,/g for @a;
863
864print "# \@b='@b', expect 'f o o b a r'\nnot " unless("@b" eq "f o o b a r");
865print "ok $test\n";
866$test++;
867
868print "not " unless("@a" eq ",f,,o,,o, ,b,,a,,r,");
869print "ok $test\n";
870$test++;
871
2c914db6 872$brackets = qr{
14455d6c 873 { (?> [^{}]+ | (??{ $brackets }) )* }
2c914db6 874 }x;
875
876"{{}" =~ $brackets;
877print "ok $test\n"; # Did we survive?
878$test++;
879
880"something { long { and } hairy" =~ $brackets;
881print "ok $test\n"; # Did we survive?
882$test++;
883
14455d6c 884"something { long { and } hairy" =~ m/((??{ $brackets }))/;
2c914db6 885print "not " unless $1 eq "{ and }";
886print "ok $test\n";
887$test++;
888
30944b6d 889$_ = "a-a\nxbb";
890pos=1;
891m/^-.*bb/mg and print "not ";
892print "ok $test\n";
893$test++;
30382c73 894
895$text = "aaXbXcc";
896pos($text)=0;
897$text =~ /\GXb*X/g and print 'not ';
898print "ok $test\n";
899$test++;
3cf5c195 900
901$text = "xA\n" x 500;
902$text =~ /^\s*A/m and print 'not ';
903print "ok $test\n";
904$test++;
d506a20d 905
906$text = "abc dbf";
907@res = ($text =~ /.*?(b).*?\b/g);
908"@res" eq 'b b' or print 'not ';
909print "ok $test\n";
910$test++;
911
9442cb0e 912@a = map chr,0..255;
aeaf5620 913
914@b = grep(/\S/,@a);
915@c = grep(/[^\s]/,@a);
916print "not " if "@b" ne "@c";
9442cb0e 917print "ok $test\n";
918$test++;
919
aeaf5620 920@b = grep(/\S/,@a);
921@c = grep(/[\S]/,@a);
922print "not " if "@b" ne "@c";
9442cb0e 923print "ok $test\n";
924$test++;
925
aeaf5620 926@b = grep(/\s/,@a);
927@c = grep(/[^\S]/,@a);
928print "not " if "@b" ne "@c";
9442cb0e 929print "ok $test\n";
930$test++;
931
aeaf5620 932@b = grep(/\s/,@a);
933@c = grep(/[\s]/,@a);
934print "not " if "@b" ne "@c";
9442cb0e 935print "ok $test\n";
936$test++;
937
aeaf5620 938@b = grep(/\D/,@a);
939@c = grep(/[^\d]/,@a);
940print "not " if "@b" ne "@c";
9442cb0e 941print "ok $test\n";
942$test++;
943
aeaf5620 944@b = grep(/\D/,@a);
945@c = grep(/[\D]/,@a);
946print "not " if "@b" ne "@c";
9442cb0e 947print "ok $test\n";
948$test++;
949
aeaf5620 950@b = grep(/\d/,@a);
951@c = grep(/[^\D]/,@a);
952print "not " if "@b" ne "@c";
9442cb0e 953print "ok $test\n";
954$test++;
955
aeaf5620 956@b = grep(/\d/,@a);
957@c = grep(/[\d]/,@a);
958print "not " if "@b" ne "@c";
9442cb0e 959print "ok $test\n";
960$test++;
961
aeaf5620 962@b = grep(/\W/,@a);
963@c = grep(/[^\w]/,@a);
964print "not " if "@b" ne "@c";
9442cb0e 965print "ok $test\n";
966$test++;
967
aeaf5620 968@b = grep(/\W/,@a);
969@c = grep(/[\W]/,@a);
970print "not " if "@b" ne "@c";
9442cb0e 971print "ok $test\n";
972$test++;
973
aeaf5620 974@b = grep(/\w/,@a);
975@c = grep(/[^\W]/,@a);
976print "not " if "@b" ne "@c";
9442cb0e 977print "ok $test\n";
978$test++;
979
aeaf5620 980@b = grep(/\w/,@a);
981@c = grep(/[\w]/,@a);
982print "not " if "@b" ne "@c";
9442cb0e 983print "ok $test\n";
984$test++;
1aeab75a 985
986# see if backtracking optimization works correctly
987"\n\n" =~ /\n $ \n/x or print "not ";
988print "ok $test\n";
989$test++;
990
991"\n\n" =~ /\n* $ \n/x or print "not ";
992print "ok $test\n";
993$test++;
994
995"\n\n" =~ /\n+ $ \n/x or print "not ";
996print "ok $test\n";
997$test++;