Skip to content

Commit

Permalink
5.10.x core dumps on magic
Browse files Browse the repository at this point in the history
  • Loading branch information
Tux committed Aug 13, 2024
1 parent eab39cb commit dbc1c48
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions DBI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7481,6 +7481,8 @@ Note: There is a bug in perl 5.8.2 when configured with threads and
debugging enabled (bug #24463) which would cause some DBI tests to fail.
These tests have been disabled for perl-5.8.2 and below.
Tests for inner method cache are disabled for perl-5.10.x
=head2 Signal Handling and Canceling Operations
[The following only applies to systems with unix-like signal handling.
Expand Down
3 changes: 3 additions & 0 deletions t/31methcache.t
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ use Test::More;
if ($has_threads && $] < 5.008007) {
plan skip_all => "Test will fail in threaded perl <= 5.8.6";
}
if ($] >= 5.010000 && $] < 5.012000) {
plan skip_all => "Test will fail in perl-5.10.x";
}

use strict;

Expand Down

0 comments on commit dbc1c48

Please sign in to comment.