File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 66 require ' ./charset_tools.pl' ;
77 require ' ./loc_tools.pl' ;
88}
9+
910use Config;
1011
1112use strict;
@@ -27,6 +28,9 @@ use warnings;
2728
2829my $switches = " " ;
2930
31+ my $is_debugging_build = $Config {cppflags } =~ / -DDEBUGGING/ ;
32+
33+
3034{ # Fixed by acababb42be12ff2986b73c1bfa963b70bb5d54e
3135 " abab" =~ / (?:[^b]*(?=(b)|(a))ab)*/ ;
3236 is($1 , undef , " GH #16894" );
@@ -75,13 +79,15 @@ TODO: {
7579}
7680
7781TODO: {
82+ todo_skip " Test needs -DDEBUGGING" , 1 unless $is_debugging_build ;
7883 local $: :TODO = ' GH 16876' ;
7984 fresh_perl(' $_ = "a"; s{ x | (?{ s{}{x} }) }{}gx;' ,
8085 { stderr => ' devnull' });
8186 is($? , 0, " No assertion failure" );
8287}
8388
8489TODO: {
90+ todo_skip " Test needs -DDEBUGGING" , 1 unless $is_debugging_build ;
8591 local $: :TODO = ' GH 16952' ;
8692 fresh_perl(' s/d|(?{})!//.$&>0for$0,l..a0,0..0' ,
8793 { stderr => ' devnull' });
You can’t perform that action at this time.
0 commit comments