File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ skip_all_without_unicode_tables();
28
28
my $has_locales = locales_enabled(' LC_CTYPE' );
29
29
my $utf8_locale = find_utf8_ctype_locale();
30
30
31
- plan tests => 1295 ; # Update this when adding/deleting tests.
31
+ plan tests => 1296 ; # Update this when adding/deleting tests.
32
32
33
33
run_tests() unless caller ;
34
34
@@ -2643,6 +2643,12 @@ local $SIG{__WARN__} = sub { die; };
2643
2643
eval "qr/()x{/;" for 1..10;
2644
2644
PROG
2645
2645
}
2646
+
2647
+ { # GH 16894 Fixed by acababb42be12ff2986b73c1bfa963b70bb5d54e
2648
+ " abab" =~ / (?:[^b]*(?=(b)|(a))ab)*/ ;
2649
+ is($1 , undef , " GH #16894" );
2650
+ }
2651
+
2646
2652
} # End of sub run_tests
2647
2653
2648
2654
1;
Original file line number Diff line number Diff line change @@ -92,12 +92,6 @@ my $switches = "";
92
92
93
93
my $is_debugging_build = $Config {cppflags } =~ / -DDEBUGGING/ ;
94
94
95
-
96
- { # Fixed by acababb42be12ff2986b73c1bfa963b70bb5d54e
97
- " abab" =~ / (?:[^b]*(?=(b)|(a))ab)*/ ;
98
- is($1 , undef , " GH #16894" );
99
- }
100
-
101
95
our $TODO ;
102
96
103
97
TODO: {
You can’t perform that action at this time.
0 commit comments