4 use Imager::Color::Float;
9 if ($Config{useithreads} && $] > 5.008007) {
21 or plan skip_all => "can't test Imager's threads support with no threads";
23 or plan skip_all => "require a perl with CLONE_SKIP to test Imager's threads support";
25 or plan skip_all => "couldn't load threads";
27 $INC{"Devel/Cover.pm"}
28 and plan skip_all => "threads and Devel::Cover don't get along";
30 # https://rt.cpan.org/Ticket/Display.html?id=65812
31 # https://github.com/schwern/test-more/issues/labels/Test-Builder2#issue/100
32 $Test::More::VERSION =~ /^2\.00_/
33 and plan skip_all => "threads are hosed in 2.00_06 and presumably all 2.00_*";
44 push @t, threads->create
49 print "# start $which\n";
51 push @im, Imager->new(xsize => 10, ysize => 10);
52 $im[0]->box(fill => { solid => "#FF0000" });
53 my $im = Imager->new(xsize => 10, ysize => 10, type => "paletted");
54 $im->setpixel(x => 5, y => 5, color => "#808080");
56 print "# end $which\n";
62 pass("grind image creation");