X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F20-good.t;h=510a0a359e63a9f84a914361e0db3623f0bc2106;hb=62b584c5dfcafeecf8afa55570eef9b3106f0f3d;hp=781bf385df45e51280821c700820c92e31fbcbf1;hpb=41a4b907f4846f2d35b170f517fb83ceb13f298c;p=perl%2Fmodules%2FTest-Valgrind.git diff --git a/t/20-good.t b/t/20-good.t index 781bf38..510a0a3 100644 --- a/t/20-good.t +++ b/t/20-good.t @@ -4,7 +4,11 @@ use strict; use warnings; use Test::More; -eval 'use Test::Valgrind'; # diag => 1'; -plan skip_all => 'Test::Valgrind is required to run test your distribution with valgrind' if $@; +use lib qw{blib/archpub}; +eval 'use Test::Valgrind'; +if ($@) { + diag $@; + plan skip_all => 'Test::Valgrind is required to run test your distribution with valgrind'; +} 1;