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 df4d5e8 commit fe09a9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
7 changes: 6 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 => 1295; # Update this when adding/deleting tests.
plan tests => 1296; # Update this when adding/deleting tests.

run_tests() unless caller;

Expand Down Expand Up @@ -2643,6 +2643,11 @@ local $SIG{__WARN__} = sub { die; };
eval "qr/()x{/;" for 1..10;
PROG
}

{ # Fixed by acababb42be12ff2986b73c1bfa963b70bb5d54e
"abab" =~ /(?:[^b]*(?=(b)|(a))ab)*/;
is($1, undef, "GH #16894");
}
} # End of sub run_tests

1;
Expand Down
5 changes: 0 additions & 5 deletions t/run/todo.t
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ use warnings;

my $switches = "";

{ # Fixed by acababb42be12ff2986b73c1bfa963b70bb5d54e
"abab" =~ /(?:[^b]*(?=(b)|(a))ab)*/;
is($1, undef, "GH #16894");
}

our $TODO;
TODO: {
local $TODO = "GH 16250";
Expand Down

0 comments on commit fe09a9f

Please sign in to comment.