Skip to content

Commit

Permalink
Move formerly TODO test, now PASSing
Browse files Browse the repository at this point in the history
... to more permanent location
  • Loading branch information
jkeenan committed Dec 15, 2024
1 parent fe09a9f commit 6518f61
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
9 changes: 8 additions & 1 deletion t/re/pat.t
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ skip_all_without_unicode_tables();
my $has_locales = locales_enabled('LC_CTYPE');
my $utf8_locale = find_utf8_ctype_locale();

plan tests => 1296; # Update this when adding/deleting tests.
plan tests => 1297; # Update this when adding/deleting tests.

run_tests() unless caller;

Expand Down Expand Up @@ -2648,6 +2648,13 @@ PROG
"abab" =~ /(?:[^b]*(?=(b)|(a))ab)*/;
is($1, undef, "GH #16894");
}

{
fresh_perl('s/d|(?{})!//.$&>0for$0,l..a0,0..0',
{ stderr => 'devnull' });
is($?, 0, "No assertion failure (GH 16952)");
}

} # End of sub run_tests

1;
Expand Down
7 changes: 0 additions & 7 deletions t/run/todo.t
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,6 @@ TODO: {
is($?, 0, "No assertion failure");
}

TODO: {
local $::TODO = 'GH 16952';
fresh_perl('s/d|(?{})!//.$&>0for$0,l..a0,0..0',
{ stderr => 'devnull' });
is($?, 0, "No assertion failure");
}

TODO: {
local $::TODO = 'GH 16971';
fresh_perl('split(/00|0\G/, "000")',
Expand Down

0 comments on commit 6518f61

Please sign in to comment.