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 6
6
require ' ./charset_tools.pl' ;
7
7
require ' ./loc_tools.pl' ;
8
8
}
9
+
9
10
use Config;
10
11
11
12
use strict;
@@ -27,6 +28,9 @@ use warnings;
27
28
28
29
my $switches = " " ;
29
30
31
+ my $is_debugging_build = $Config {cppflags } =~ / -DDEBUGGING/ ;
32
+
33
+
30
34
{ # Fixed by acababb42be12ff2986b73c1bfa963b70bb5d54e
31
35
" abab" =~ / (?:[^b]*(?=(b)|(a))ab)*/ ;
32
36
is($1 , undef , " GH #16894" );
@@ -75,13 +79,15 @@ TODO: {
75
79
}
76
80
77
81
TODO: {
82
+ todo_skip " Test needs -DDEBUGGING" , 1 unless $is_debugging_build ;
78
83
local $: :TODO = ' GH 16876' ;
79
84
fresh_perl(' $_ = "a"; s{ x | (?{ s{}{x} }) }{}gx;' ,
80
85
{ stderr => ' devnull' });
81
86
is($? , 0, " No assertion failure" );
82
87
}
83
88
84
89
TODO: {
90
+ todo_skip " Test needs -DDEBUGGING" , 1 unless $is_debugging_build ;
85
91
local $: :TODO = ' GH 16952' ;
86
92
fresh_perl(' s/d|(?{})!//.$&>0for$0,l..a0,0..0' ,
87
93
{ stderr => ' devnull' });
You can’t perform that action at this time.
0 commit comments