PBM images inverted (#30859) (might be fixed in TIFF branch)
-don't load B at compile-time in t82inline.t (#30508)
+don't load B at compile-time in t82inline.t (#30508) (done)
the hardinvert filter inverts the alpha channels, this probably isn't
desirable (#30002)
plan skip_all => "Inline won't work in directories with spaces"
if getcwd() =~ / /;
+plan skip_all => "perl 5.005_04, 5.005_05 too buggy"
+ if $] =~ /^5\.005_0[45]$/;
+
plan tests => 9;
require Inline;
Inline->import(with => 'Imager');
my $im = make_10x10();
my $im2 = Imager->new(xsize => 10, ysize => 10);
- use B;
+ require B;
my $imb = B::svref_2object($im);
my $im2b = B::svref_2object($im2);
is ($imb->REFCNT, $im2b->REFCNT,