Skip to content

Commit

Permalink
[RT #65812] skip the threads tests on Test::More 2.00_*
Browse files Browse the repository at this point in the history
  • Loading branch information
tonycoz committed Feb 18, 2011
1 parent 7540f84 commit 81984f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Changes
Expand Up @@ -15,6 +15,9 @@ Bug fixes:
that I don't feel a need to require a Test::More upgrade for it.
https://rt.cpan.org/Ticket/Display.html?id=65864

- skip the threads tests on Test::More 2.00_*
https://rt.cpan.org/Ticket/Display.html?id=65812

Imager 0.81 - 14 Feb 2011
===========

Expand Down
5 changes: 5 additions & 0 deletions t/t99thread.t
Expand Up @@ -27,6 +27,11 @@ $loaded_threads
$INC{"Devel/Cover.pm"}
and plan skip_all => "threads and Devel::Cover don't get along";

# https://rt.cpan.org/Ticket/Display.html?id=65812
# https://github.com/schwern/test-more/issues/labels/Test-Builder2#issue/100
$Test::More::VERSION =~ /^2\.00_/
and plan skip_all => "threads are hosed in 2.00_06 and presumably all 2.00_*";

plan tests => 11;

my $thread = threads->create(sub { 1; });
Expand Down

0 comments on commit 81984f3

Please sign in to comment.