--- GD-2.73/t/GD.t.orig 2020-07-17 21:56:53.000000000 +0300 +++ GD-2.73/t/GD.t 2020-10-01 11:55:04.626002379 +0300 @@ -8,7 +8,7 @@ use lib "$Bin/../blib/lib","$Bin/../blib/arch","$Bin/../lib"; use constant FONT=>"$Bin/test_data/Generic.ttf"; use constant IMAGE_TESTS => 7; -use Test::More tests => 14; +use Test::More tests => 12; use IO::Dir; use_ok('GD',':DEFAULT',':cmp'); @@ -244,6 +244,8 @@ my $suffix = $ENV{GDIMAGETYPE} || 'gd2'; print STDERR "# Testing gd ".GD::VERSION_STRING()." using $suffix support.\n"; for my $t (1..IMAGE_TESTS) { + # Skip, we change fonts so byte-comparing images becomes useless + next if $t == 5 or $t == 7; my $gd = eval "test${t}('$suffix')"; if (!$gd) { fail("unable to generate comparison image for test $t: $@");