This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
f0090865a1d4d77394bf7ace11e5918e53520c8a
[perl5.git] / t / op / pat.t
1 #!./perl
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.
6
7 print "1..223\n";
8
9 BEGIN {
10     chdir 't' if -d 't';
11     @INC = '../lib';
12 }
13 eval 'use Config';          #  Defaults assumed if this fails
14
15 # XXX known to leak scalars
16 $ENV{PERL_DESTRUCT_LEVEL} = 0 unless $ENV{PERL_DESTRUCT_LEVEL} > 3;
17
18 $x = "abc\ndef\n";
19
20 if ($x =~ /^abc/) {print "ok 1\n";} else {print "not ok 1\n";}
21 if ($x !~ /^def/) {print "ok 2\n";} else {print "not ok 2\n";}
22
23 $* = 1;
24 if ($x =~ /^def/) {print "ok 3\n";} else {print "not ok 3\n";}
25 $* = 0;
26
27 $_ = '123';
28 if (/^([0-9][0-9]*)/) {print "ok 4\n";} else {print "not ok 4\n";}
29
30 if ($x =~ /^xxx/) {print "not ok 5\n";} else {print "ok 5\n";}
31 if ($x !~ /^abc/) {print "not ok 6\n";} else {print "ok 6\n";}
32
33 if ($x =~ /def/) {print "ok 7\n";} else {print "not ok 7\n";}
34 if ($x !~ /def/) {print "not ok 8\n";} else {print "ok 8\n";}
35
36 if ($x !~ /.def/) {print "ok 9\n";} else {print "not ok 9\n";}
37 if ($x =~ /.def/) {print "not ok 10\n";} else {print "ok 10\n";}
38
39 if ($x =~ /\ndef/) {print "ok 11\n";} else {print "not ok 11\n";}
40 if ($x !~ /\ndef/) {print "not ok 12\n";} else {print "ok 12\n";}
41
42 $_ = 'aaabbbccc';
43 if (/(a*b*)(c*)/ && $1 eq 'aaabbb' && $2 eq 'ccc') {
44         print "ok 13\n";
45 } else {
46         print "not ok 13\n";
47 }
48 if (/(a+b+c+)/ && $1 eq 'aaabbbccc') {
49         print "ok 14\n";
50 } else {
51         print "not ok 14\n";
52 }
53
54 if (/a+b?c+/) {print "not ok 15\n";} else {print "ok 15\n";}
55
56 $_ = 'aaabccc';
57 if (/a+b?c+/) {print "ok 16\n";} else {print "not ok 16\n";}
58 if (/a*b+c*/) {print "ok 17\n";} else {print "not ok 17\n";}
59
60 $_ = 'aaaccc';
61 if (/a*b?c*/) {print "ok 18\n";} else {print "not ok 18\n";}
62 if (/a*b+c*/) {print "not ok 19\n";} else {print "ok 19\n";}
63
64 $_ = 'abcdef';
65 if (/bcd|xyz/) {print "ok 20\n";} else {print "not ok 20\n";}
66 if (/xyz|bcd/) {print "ok 21\n";} else {print "not ok 21\n";}
67
68 if (m|bc/*d|) {print "ok 22\n";} else {print "not ok 22\n";}
69
70 if (/^$_$/) {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
73 if ("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');
81 while ($_ = shift(@XXX)) {
82     ?(.*)? && (print $1,"\n");
83     /not/ && reset;
84     /not ok 26/ && reset 'X';
85 }
86
87 while (($key,$val) = each(%XXX)) {
88     print "not ok 27\n";
89     exit;
90 }
91
92 print "ok 27\n";
93
94 'cde' =~ /[^ab]*/;
95 'xyz' =~ //;
96 if ($& eq 'xyz') {print "ok 28\n";} else {print "not ok 28\n";}
97
98 $foo = '[^ab]*';
99 'cde' =~ /$foo/;
100 'xyz' =~ //;
101 if ($& eq 'xyz') {print "ok 29\n";} else {print "not ok 29\n";}
102
103 $foo = '[^ab]*';
104 'cde' =~ /$foo/;
105 'xyz' =~ /$null/;
106 if ($& eq 'xyz') {print "ok 30\n";} else {print "not ok 30\n";}
107
108 $_ = 'abcdefghi';
109 /def/;          # optimized up to cmd
110 if ("$`:$&:$'" eq 'abc:def:ghi') {print "ok 31\n";} else {print "not ok 31\n";}
111
112 /cde/ + 0;      # optimized only to spat
113 if ("$`:$&:$'" eq 'ab:cde:fghi') {print "ok 32\n";} else {print "not ok 32\n";}
114
115 /[d][e][f]/;    # not optimized
116 if ("$`:$&:$'" 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 / {([^}]*)}/;
120 if ($1 eq 'time for all') {print "ok 34\n";} else {print "not ok 34 $1\n";}
121
122 $_ = 'xxx {3,4}  yyy   zzz';
123 print /( {3,4})/ ? "ok 35\n" : "not ok 35\n";
124 print $1 eq '   ' ? "ok 36\n" : "not ok 36\n";
125 print /( {4,})/ ? "not ok 37\n" : "ok 37\n";
126 print /( {2,3}.)/ ? "ok 38\n" : "not ok 38\n";
127 print $1 eq '  y' ? "ok 39\n" : "not ok 39\n";
128 print /(y{2,3}.)/ ? "ok 40\n" : "not ok 40\n";
129 print $1 eq 'yyy ' ? "ok 41\n" : "not ok 41\n";
130 print /x {3,4}/ ? "not ok 42\n" : "ok 42\n";
131 print /^xxx {3,4}/ ? "not ok 43\n" : "ok 43\n";
132
133 $_ = "now is the time for all good men to come to.";
134 @words = /(\w+)/g;
135 print 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 = ();
140 while (/\w+/g) {
141     push(@words, $&);
142 }
143 print 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 = ();
148 pos = 0;
149 while (/to/g) {
150     push(@words, $&);
151 }
152 print join(':',@words) eq "to:to"
153     ? "ok 46\n"
154     : "not ok 46 `@words'\n";
155
156 pos $_ = 0;
157 @words = /to/g;
158 print join(':',@words) eq "to:to"
159     ? "ok 47\n"
160     : "not ok 47 `@words'\n";
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
176 for $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";
189 print $x eq '505550555' ? "ok 48\n" : "not ok 48 $x\n";
190
191 $xyz = 'xyz';
192 print "abc" =~ /^abc$|$xyz/ ? "ok 49\n" : "not ok 49\n";
193
194 # perl 4.009 says "unmatched ()"
195 eval '"abc" =~ /a(bc$)|$xyz/; $result = "$&:$1"';
196 print $@ eq "" ? "ok 50\n" : "not ok 50\n";
197 print $result eq "abc:bc" ? "ok 51\n" : "not ok 51\n";
198
199
200 $_="abcfooabcbar";
201 $x=/abc/g;
202 print $` eq "" ? "ok 52\n" : "not ok 52\n" if $x;
203 $x=/abc/g;
204 print $` eq "abcfoo" ? "ok 53\n" : "not ok 53\n" if $x;
205 $x=/abc/g;
206 print $x == 0 ? "ok 54\n" : "not ok 54\n";
207 pos = 0;
208 $x=/ABC/gi;
209 print $` eq "" ? "ok 55\n" : "not ok 55\n" if $x;
210 $x=/ABC/gi;
211 print $` eq "abcfoo" ? "ok 56\n" : "not ok 56\n" if $x;
212 $x=/ABC/gi;
213 print $x == 0 ? "ok 57\n" : "not ok 57\n";
214 pos = 0;
215 $x=/abc/g;
216 print $' eq "fooabcbar" ? "ok 58\n" : "not ok 58\n" if $x;
217 $x=/abc/g;
218 print $' eq "bar" ? "ok 59\n" : "not ok 59\n" if $x;
219 $_ .= '';
220 @x=/abc/g;
221 print scalar @x == 2 ? "ok 60\n" : "not ok 60\n";
222
223 $_ = "abdc";
224 pos $_ = 2;
225 /\Gc/gc;
226 print "not " if (pos $_) != 2;
227 print "ok 61\n";
228 /\Gc/g;
229 print "not " if defined pos $_;
230 print "ok 62\n";
231
232 $out = 1;
233 'abc' =~ m'a(?{ $out = 2 })b';
234 print "not " if $out != 2;
235 print "ok 63\n";
236
237 $out = 1;
238 'abc' =~ m'a(?{ $out = 3 })c';
239 print "not " if $out != 1;
240 print "ok 64\n";
241
242 $_ = 'foobar1 bar2 foobar3 barfoobar5 foobar6';
243 @out = /(?<!foo)bar./g;
244 print "not " if "@out" ne 'bar2 barf';
245 print "ok 65\n";
246
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
255 undef $@;
256 print "not " if eval q(('aaa' =~ /(a{1,$reg_infty_m})/)[0] ne 'aaa') || $@;
257 print "ok 66\n";
258
259 undef $@;
260 print "not " if eval q(('a' x $reg_infty_m) !~ /a{$reg_infty_m}/) || $@;
261 print "ok 67\n";
262
263 undef $@;
264 print "not " if eval q(('a' x ($reg_infty_m - 1)) =~ /a{$reg_infty_m}/) || $@;
265 print "ok 68\n";
266
267 undef $@;
268 eval "'aaa' =~ /a{1,$reg_infty}/";
269 print "not " if $@ !~ m%^\QQuantifier in {,} bigger than%;
270 print "ok 69\n";
271
272 eval "'aaa' =~ /a{1,$reg_infty_p}/";
273 print "not "
274         if $@ !~ m%^\QQuantifier in {,} bigger than%;
275 print "ok 70\n";
276 undef $@;
277
278 # Poke a couple more parse failures
279
280 $context = 'x' x 256;
281 eval qq("${context}y" =~ /(?<=$context)y/);
282 print "not " if $@ !~ m%^\QLookbehind longer than 255 not%;
283 print "ok 71\n";
284
285 # removed test
286 print "ok 72\n";
287
288 # Long Monsters
289 $test = 73;
290 for $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
314 for ( 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
328 sub matchit { 
329   m/
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
356    /xg;
357 }
358
359 @ans = ();
360 push @ans, $res while $res = matchit;
361
362 print "# ans='@ans'\n# expect='$expect'\nnot " if "@ans" ne "1 1 1";
363 print "ok $test\n";
364 $test++;
365
366 @ans = matchit;
367
368 print "# ans='@ans'\n# expect='$expect'\nnot " if "@ans" ne $expect;
369 print "ok $test\n";
370 $test++;
371
372 print "not " unless "abc" =~ /^(??{"a"})b/;
373 print "ok $test\n";
374 $test++;
375
376 my $matched;
377 $matched = qr/\((?:(?>[^()]+)|(??{$matched}))*\)/;
378
379 @ans = @ans1 = ();
380 push(@ans, $res), push(@ans1, $&) while $res = m/$matched/g;
381
382 print "# ans='@ans'\n# expect='$expect'\nnot " if "@ans" ne "1 1 1";
383 print "ok $test\n";
384 $test++;
385
386 print "# ans1='@ans1'\n# expect='$expect'\nnot " if "@ans1" ne $expect;
387 print "ok $test\n";
388 $test++;
389
390 @ans = m/$matched/g;
391
392 print "# ans='@ans'\n# expect='$expect'\nnot " if "@ans" ne $expect;
393 print "ok $test\n";
394 $test++;
395
396 @ans = ('a/b' =~ m%(.*/)?(.*)%);        # Stack may be bad
397 print "not " if "@ans" ne 'a/ b';
398 print "ok $test\n";
399 $test++;
400
401 $code = '{$blah = 45}';
402 $blah = 12;
403 eval { /(?$code)/ };
404 print "not " unless $@ and $@ =~ /not allowed at runtime/ and $blah == 12;
405 print "ok $test\n";
406 $test++;
407
408 for $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
420 $code = '{$blah = 45}';
421 $blah = 12;
422 eval "/(?$code)/";                      
423 print "not " if $blah != 45;
424 print "ok $test\n";
425 $test++;
426
427 $blah = 12;
428 /(?{$blah = 45})/;                      
429 print "not " if $blah != 45;
430 print "ok $test\n";
431 $test++;
432
433 $x = 'banana';
434 $x =~ /.a/g;
435 print "not " unless pos($x) == 2;
436 print "ok $test\n";
437 $test++;
438
439 $x =~ /.z/gc;
440 print "not " unless pos($x) == 2;
441 print "ok $test\n";
442 $test++;
443
444 sub f {
445     my $p = $_[0];
446     return $p;
447 }
448
449 $x =~ /.a/g;
450 print "not " unless f(pos($x)) == 4;
451 print "ok $test\n";
452 $test++;
453
454 $x = $^R = 67;
455 'foot' =~ /foo(?{$x = 12; 75})[t]/;
456 print "not " unless $^R eq '75';
457 print "ok $test\n";
458 $test++;
459
460 $x = $^R = 67;
461 'foot' =~ /foo(?{$x = 12; 75})[xy]/;
462 print "not " unless $^R eq '67' and $x eq '12';
463 print "ok $test\n";
464 $test++;
465
466 $x = $^R = 67;
467 'foot' =~ /foo(?{ $^R + 12 })((?{ $x = 12; $^R + 17 })[xy])?/;
468 print "not " unless $^R eq '79' and $x eq '12';
469 print "ok $test\n";
470 $test++;
471
472 print "not " unless qr/\b\v$/i eq '(?i-xsm:\bv$)';
473 print "ok $test\n";
474 $test++;
475
476 print "not " unless qr/\b\v$/s eq '(?s-xim:\bv$)';
477 print "ok $test\n";
478 $test++;
479
480 print "not " unless qr/\b\v$/m eq '(?m-xis:\bv$)';
481 print "ok $test\n";
482 $test++;
483
484 print "not " unless qr/\b\v$/x eq '(?x-ism:\bv$)';
485 print "ok $test\n";
486 $test++;
487
488 print "not " unless qr/\b\v$/xism eq '(?msix:\bv$)';
489 print "ok $test\n";
490 $test++;
491
492 print "not " unless qr/\b\v$/ eq '(?-xism:\bv$)';
493 print "ok $test\n";
494 $test++;
495
496 $_ = 'xabcx';
497 foreach $ans ('', 'c') {
498   /(?<=(?=a)..)((?=c)|.)/g;
499   print "not " unless $1 eq $ans;
500   print "ok $test\n";
501   $test++;
502 }
503
504 $_ = 'a';
505 foreach $ans ('', 'a', '') {
506   /^|a|$/g;
507   print "not " unless $& eq $ans;
508   print "ok $test\n";
509   $test++;
510 }
511
512 sub 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 }
519 prefixify('/a/b/lib/arch', "/a/b/lib", 'X/lib', 'X/lib/arch');
520 prefixify('/a/b/man/arch', "/a/b/man", 'X/man', 'X/man/arch');
521
522 $_ = 'var="foo"';
523 /(\")/;
524 print "not " unless $1 and /$1/;
525 print "ok $test\n";
526 $test++;
527
528 $a=qr/(?{++$b})/; 
529 $b = 7;
530 /$a$a/; 
531 print "not " unless $b eq '9'; 
532 print "ok $test\n";
533 $test++;
534
535 $c="$a"; 
536 /$a$a/; 
537 print "not " unless $b eq '11'; 
538 print "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 }
555
556 {
557   package aa;
558   $c = 2;
559   $::c = 3;
560   '' =~ /(?{ $c = 4 })/;
561   print "not " unless $c == 4;
562 }
563 print "ok $test\n";
564 $test++;
565 print "not " unless $c == 3;
566 print "ok $test\n";
567 $test++;  
568   
569 sub must_warn_pat {
570     my $warn_pat = shift;
571     return sub { print "not " unless $_[0] =~ /$warn_pat/ }
572 }
573
574 sub must_warn {
575     my ($warn_pat, $code) = @_;
576     local %SIG;
577     eval 'BEGIN { use warnings; $SIG{__WARN__} = $warn_pat };' . $code;
578     print "ok $test\n";
579     $test++;
580 }
581
582
583 sub make_must_warn {
584     my $warn_pat = shift;
585     return sub { must_warn(must_warn_pat($warn_pat)) }
586 }
587
588 my $for_future = make_must_warn('reserved for future extensions');
589
590 &$for_future('q(a:[b]:) =~ /[x[:foo:]]/');
591
592 #&$for_future('q(a=[b]=) =~ /[x[=foo=]]/');
593 print "ok $test\n"; $test++; # now a fatal croak
594
595 #&$for_future('q(a.[b].) =~ /[x[.foo.]]/');
596 print "ok $test\n"; $test++; # now a fatal croak
597
598 # test if failure of patterns returns empty list
599 $_ = 'aaa';
600 @_ = /bbb/;
601 print "not " if @_;
602 print "ok $test\n";
603 $test++;
604
605 @_ = /bbb/g;
606 print "not " if @_;
607 print "ok $test\n";
608 $test++;
609
610 @_ = /(bbb)/;
611 print "not " if @_;
612 print "ok $test\n";
613 $test++;
614
615 @_ = /(bbb)/g;
616 print "not " if @_;
617 print "ok $test\n";
618 $test++;
619
620 /a(?=.$)/;
621 print "not " if $#+ != 0 or $#- != 0;
622 print "ok $test\n";
623 $test++;
624
625 print "not " if $+[0] != 2 or $-[0] != 1;
626 print "ok $test\n";
627 $test++;
628
629 print "not " 
630    if defined $+[1] or defined $-[1] or defined $+[2] or defined $-[2];
631 print "ok $test\n";
632 $test++;
633
634 /a(a)(a)/;
635 print "not " if $#+ != 2 or $#- != 2;
636 print "ok $test\n";
637 $test++;
638
639 print "not " if $+[0] != 3 or $-[0] != 0;
640 print "ok $test\n";
641 $test++;
642
643 print "not " if $+[1] != 2 or $-[1] != 1;
644 print "ok $test\n";
645 $test++;
646
647 print "not " if $+[2] != 3 or $-[2] != 2;
648 print "ok $test\n";
649 $test++;
650
651 print "not " 
652    if defined $+[3] or defined $-[3] or defined $+[4] or defined $-[4];
653 print "ok $test\n";
654 $test++;
655
656 /.(a)(b)?(a)/;
657 print "not " if $#+ != 3 or $#- != 3;
658 print "ok $test\n";
659 $test++;
660
661 print "not " if $+[0] != 3 or $-[0] != 0;
662 print "ok $test\n";
663 $test++;
664
665 print "not " if $+[1] != 2 or $-[1] != 1;
666 print "ok $test\n";
667 $test++;
668
669 print "not " if $+[3] != 3 or $-[3] != 2;
670 print "ok $test\n";
671 $test++;
672
673 print "not " 
674    if defined $+[2] or defined $-[2] or defined $+[4] or defined $-[4];
675 print "ok $test\n";
676 $test++;
677
678 /.(a)/;
679 print "not " if $#+ != 1 or $#- != 1;
680 print "ok $test\n";
681 $test++;
682
683 print "not " if $+[0] != 2 or $-[0] != 0;
684 print "ok $test\n";
685 $test++;
686
687 print "not " if $+[1] != 2 or $-[1] != 1;
688 print "ok $test\n";
689 $test++;
690
691 print "not " 
692    if defined $+[2] or defined $-[2] or defined $+[3] or defined $-[3];
693 print "ok $test\n";
694 $test++;
695
696 eval { $+[0] = 13; };
697 print "not " 
698    if $@ !~ /^Modification of a read-only value attempted/;
699 print "ok $test\n";
700 $test++;
701
702 eval { $-[0] = 13; };
703 print "not " 
704    if $@ !~ /^Modification of a read-only value attempted/;
705 print "ok $test\n";
706 $test++;
707
708 eval { @+ = (7, 6, 5); };
709 print "not " 
710    if $@ !~ /^Modification of a read-only value attempted/;
711 print "ok $test\n";
712 $test++;
713
714 eval { @- = qw(foo bar); };
715 print "not " 
716    if $@ !~ /^Modification of a read-only value attempted/;
717 print "ok $test\n";
718 $test++;
719
720 /.(a)(ba*)?/;
721 print "#$#-..$#+\nnot " if $#+ != 2 or $#- != 1;
722 print "ok $test\n";
723 $test++;
724
725 $_ = 'aaa';
726 pos = 1;
727 @a = /\Ga/g;
728 print "not " unless "@a" eq "a a";
729 print "ok $test\n";
730 $test++;
731
732 $str = 'abcde';
733 pos $str = 2;
734
735 print "not " if $str =~ /^\G/;
736 print "ok $test\n";
737 $test++;
738
739 print "not " if $str =~ /^.\G/;
740 print "ok $test\n";
741 $test++;
742
743 print "not " unless $str =~ /^..\G/;
744 print "ok $test\n";
745 $test++;
746
747 print "not " if $str =~ /^...\G/;
748 print "ok $test\n";
749 $test++;
750
751 print "not " unless $str =~ /.\G./ and $& eq 'bc';
752 print "ok $test\n";
753 $test++;
754
755 print "not " unless $str =~ /\G../ and $& eq 'cd';
756 print "ok $test\n";
757 $test++;
758
759 undef $foo; undef $bar;
760 print "#'$str','$foo','$bar'\nnot "
761     unless $str =~ /b(?{$foo = $_; $bar = pos})c/ 
762         and $foo eq 'abcde' and $bar eq 2;
763 print "ok $test\n";
764 $test++;
765
766 undef $foo; undef $bar;
767 pos $str = undef;
768 print "#'$str','$foo','$bar'\nnot "
769     unless $str =~ /b(?{$foo = $_; $bar = pos})c/g 
770         and $foo eq 'abcde' and $bar eq 2 and pos $str eq 3;
771 print "ok $test\n";
772 $test++;
773
774 $_ = $str;
775
776 undef $foo; undef $bar;
777 print "#'$str','$foo','$bar'\nnot "
778     unless /b(?{$foo = $_; $bar = pos})c/ 
779         and $foo eq 'abcde' and $bar eq 2;
780 print "ok $test\n";
781 $test++;
782
783 undef $foo; undef $bar;
784 print "#'$str','$foo','$bar'\nnot "
785     unless /b(?{$foo = $_; $bar = pos})c/g 
786         and $foo eq 'abcde' and $bar eq 2 and pos eq 3;
787 print "ok $test\n";
788 $test++;
789
790 undef $foo; undef $bar;
791 pos = undef;
792 1 while /b(?{$foo = $_; $bar = pos})c/g;
793 print "#'$str','$foo','$bar'\nnot "
794     unless $foo eq 'abcde' and $bar eq 2 and not defined pos;
795 print "ok $test\n";
796 $test++;
797
798 undef $foo; undef $bar;
799 $_ = 'abcde|abcde';
800 print "#'$str','$foo','$bar','$_'\nnot "
801     unless s/b(?{$foo = $_; $bar = pos})c/x/g and $foo eq 'abcde|abcde' 
802         and $bar eq 8 and $_ eq 'axde|axde';
803 print "ok $test\n";
804 $test++;
805
806 @res = ();
807 # List context:
808 $_ = 'abcde|abcde';
809 @dummy = /([ace]).(?{push @res, $1,$2})([ce])(?{push @res, $1,$2})/g;
810 @res = map {defined $_ ? "'$_'" : 'undef'} @res;
811 $res = "@res";
812 print "#'@res' '$_'\nnot "
813     unless "@res" eq "'a' undef 'a' 'c' 'e' undef 'a' undef 'a' 'c'";
814 print "ok $test\n";
815 $test++;
816
817 @res = ();
818 @dummy = /([ace]).(?{push @res, $`,$&,$'})([ce])(?{push @res, $`,$&,$'})/g;
819 @res = map {defined $_ ? "'$_'" : 'undef'} @res;
820 $res = "@res";
821 print "#'@res' '$_'\nnot "
822     unless "@res" eq
823   "'' 'ab' 'cde|abcde' " .
824   "'' 'abc' 'de|abcde' " .
825   "'abcd' 'e|' 'abcde' " .
826   "'abcde|' 'ab' 'cde' " .
827   "'abcde|' 'abc' 'de'" ;
828 print "ok $test\n";
829 $test++;
830
831 #Some more \G anchor checks
832 $foo='aabbccddeeffgg';
833
834 pos($foo)=1;
835
836 $foo=~/.\G(..)/g;
837 print "not " unless($1 eq 'ab');
838 print "ok $test\n";
839 $test++;
840
841 pos($foo) += 1;
842 $foo=~/.\G(..)/g;
843 print "not " unless($1 eq 'cc');
844 print "ok $test\n";
845 $test++;
846
847 pos($foo) += 1;
848 $foo=~/.\G(..)/g;
849 print "not " unless($1 eq 'de');
850 print "ok $test\n";
851 $test++;
852
853 print "not " unless $foo =~ /\Gef/g;
854 print "ok $test\n";
855 $test++;
856
857 undef pos $foo;
858
859 $foo=~/\G(..)/g;
860 print "not " unless($1  eq 'aa');
861 print "ok $test\n";
862 $test++;
863
864 $foo=~/\G(..)/g;
865 print "not " unless($1  eq 'bb');
866 print "ok $test\n";
867 $test++;
868
869 pos($foo)=5;
870 $foo=~/\G(..)/g;
871 print "not " unless($1  eq 'cd');
872 print "ok $test\n";
873 $test++;
874
875 $_='123x123'; 
876 @res = /(\d*|x)/g;
877 print "not " unless('123||x|123|' eq join '|', @res);
878 print "ok $test\n";
879 $test++;
880
881 # see if matching against temporaries (created via pp_helem()) is safe
882 { foo => "ok $test\n".$^X }->{foo} =~ /^(.*)\n/g;
883 print "$1\n";
884 $test++;
885
886 # See if $i work inside (?{}) in the presense of saved substrings and
887 # changing $_
888 @a = qw(foo bar);
889 @b = ();
890 s/(\w)(?{push @b, $1})/,$1,/g for @a;
891
892 print "# \@b='@b', expect 'f o o b a r'\nnot " unless("@b" eq "f o o b a r");
893 print "ok $test\n";
894 $test++;
895
896 print "not " unless("@a" eq ",f,,o,,o, ,b,,a,,r,");
897 print "ok $test\n";
898 $test++;
899
900 $brackets = qr{
901                  {  (?> [^{}]+ | (??{ $brackets }) )* }
902               }x;
903
904 "{{}" =~ $brackets;
905 print "ok $test\n";             # Did we survive?
906 $test++;
907
908 "something { long { and } hairy" =~ $brackets;
909 print "ok $test\n";             # Did we survive?
910 $test++;
911
912 "something { long { and } hairy" =~ m/((??{ $brackets }))/;
913 print "not " unless $1 eq "{ and }";
914 print "ok $test\n";
915 $test++;
916
917 $_ = "a-a\nxbb";
918 pos=1;
919 m/^-.*bb/mg and print "not ";
920 print "ok $test\n";
921 $test++;
922
923 $text = "aaXbXcc";
924 pos($text)=0;
925 $text =~ /\GXb*X/g and print 'not ';
926 print "ok $test\n";
927 $test++;
928
929 $text = "xA\n" x 500;
930 $text =~ /^\s*A/m and print 'not ';
931 print "ok $test\n";
932 $test++;
933
934 $text = "abc dbf";
935 @res = ($text =~ /.*?(b).*?\b/g);
936 "@res" eq 'b b' or print 'not ';
937 print "ok $test\n";
938 $test++;
939
940 @a = map chr,0..255;
941
942 @b = grep(/\S/,@a);
943 @c = grep(/[^\s]/,@a);
944 print "not " if "@b" ne "@c";
945 print "ok $test\n";
946 $test++;
947
948 @b = grep(/\S/,@a);
949 @c = grep(/[\S]/,@a);
950 print "not " if "@b" ne "@c";
951 print "ok $test\n";
952 $test++;
953
954 @b = grep(/\s/,@a);
955 @c = grep(/[^\S]/,@a);
956 print "not " if "@b" ne "@c";
957 print "ok $test\n";
958 $test++;
959
960 @b = grep(/\s/,@a);
961 @c = grep(/[\s]/,@a);
962 print "not " if "@b" ne "@c";
963 print "ok $test\n";
964 $test++;
965
966 @b = grep(/\D/,@a);
967 @c = grep(/[^\d]/,@a);
968 print "not " if "@b" ne "@c";
969 print "ok $test\n";
970 $test++;
971
972 @b = grep(/\D/,@a);
973 @c = grep(/[\D]/,@a);
974 print "not " if "@b" ne "@c";
975 print "ok $test\n";
976 $test++;
977
978 @b = grep(/\d/,@a);
979 @c = grep(/[^\D]/,@a);
980 print "not " if "@b" ne "@c";
981 print "ok $test\n";
982 $test++;
983
984 @b = grep(/\d/,@a);
985 @c = grep(/[\d]/,@a);
986 print "not " if "@b" ne "@c";
987 print "ok $test\n";
988 $test++;
989
990 @b = grep(/\W/,@a);
991 @c = grep(/[^\w]/,@a);
992 print "not " if "@b" ne "@c";
993 print "ok $test\n";
994 $test++;
995
996 @b = grep(/\W/,@a);
997 @c = grep(/[\W]/,@a);
998 print "not " if "@b" ne "@c";
999 print "ok $test\n";
1000 $test++;
1001
1002 @b = grep(/\w/,@a);
1003 @c = grep(/[^\W]/,@a);
1004 print "not " if "@b" ne "@c";
1005 print "ok $test\n";
1006 $test++;
1007
1008 @b = grep(/\w/,@a);
1009 @c = grep(/[\w]/,@a);
1010 print "not " if "@b" ne "@c";
1011 print "ok $test\n";
1012 $test++;
1013
1014 # see if backtracking optimization works correctly
1015 "\n\n" =~ /\n  $ \n/x or print "not ";
1016 print "ok $test\n";
1017 $test++;
1018
1019 "\n\n" =~ /\n* $ \n/x or print "not ";
1020 print "ok $test\n";
1021 $test++;
1022
1023 "\n\n" =~ /\n+ $ \n/x or print "not ";
1024 print "ok $test\n";
1025 $test++;
1026
1027 [] =~ /^ARRAY/ or print "# [] \nnot ";
1028 print "ok $test\n";
1029 $test++;
1030
1031 eval << 'EOE';
1032 {
1033  package S;
1034  use overload '""' => sub { 'Object S' };
1035  sub new { bless [] }
1036 }
1037 $a = 'S'->new;
1038 EOE
1039
1040 $a and $a =~ /^Object\sS/ or print "# '$a' \nnot ";
1041 print "ok $test\n";
1042 $test++;
1043
1044 # test result of match used as match (!)
1045 'a1b' =~ ('xyz' =~ /y/) and $` eq 'a' or print "not ";
1046 print "ok $test\n";
1047 $test++;
1048
1049 'a1b' =~ ('xyz' =~ /t/) and $` eq 'a' or print "not ";
1050 print "ok $test\n";
1051 $test++;
1052
1053 $w = 0;
1054 {
1055     local $SIG{__WARN__} = sub { $w = 1 };
1056     local $^W = 1;
1057         $w = 1 if ("1\n" x 102) =~ /^\s*\n/m;
1058 }
1059 print $w ? "not " : "", "ok $test\n";
1060 $test++;
1061
1062 my %space = ( spc   => " ",
1063               tab   => "\t",
1064               cr    => "\r",
1065               lf    => "\n",
1066               ff    => "\f",
1067 # The vertical tabulator seems miraculously be 12 both in ASCII and EBCDIC.
1068               vt    => chr(11),
1069               false => "space" );
1070
1071 my @space0 = sort grep { $space{$_} =~ /\s/ }          keys %space;
1072 my @space1 = sort grep { $space{$_} =~ /[[:space:]]/ } keys %space;
1073 my @space2 = sort grep { $space{$_} =~ /[[:blank:]]/ } keys %space;
1074
1075 print "not " unless "@space0" eq "cr ff lf spc tab";
1076 print "ok $test\n";
1077 $test++;
1078
1079 print "not " unless "@space1" eq "cr ff lf spc tab vt";
1080 print "ok $test\n";
1081 $test++;
1082
1083 print "not " unless "@space2" eq "spc tab";
1084 print "ok $test\n";
1085 $test++;
1086