]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/blobdiff - t/20-good.t
Output more diagnostics when 'use Test::Valgrind' fails
[perl/modules/Test-Valgrind.git] / t / 20-good.t
index 781bf385df45e51280821c700820c92e31fbcbf1..510a0a359e63a9f84a914361e0db3623f0bc2106 100644 (file)
@@ -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;