From: Tony Cook Date: Mon, 26 Jul 2010 08:08:30 +0000 (+0000) Subject: don't test threads when running a coverage test, since Devel::Cover X-Git-Tag: Imager-0.77~22 X-Git-Url: http://git.imager.perl.org/imager.git/commitdiff_plain/d655c053039be81cacc2fec74fc28c2318bd85ca don't test threads when running a coverage test, since Devel::Cover aborts and prevents testing of the subdirectories --- diff --git a/t/t99thread.t b/t/t99thread.t index 55562246..85a9e95b 100644 --- a/t/t99thread.t +++ b/t/t99thread.t @@ -24,6 +24,9 @@ $] > 5.008007 $loaded_threads or plan skip_all => "couldn't load threads"; +$INC{"Devel/Cover.pm"} + and plan skip_all => "threads and Devel::Cover don't get along"; + plan tests => 11; my $thread = threads->create(sub { 1; });