X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FTest%2FValgrind%2FSession.pm;h=27aa97344c3d8b4c474c889e3ce9f06df2843ea5;hb=2d1051a7ab93eee13b726edd0b353342e683bc2b;hp=93218ac714c8f774d3e9c5f4b5c0051df379af88;hpb=7a0d14b4934af9bd1d79b8ea1f753a00b497dafd;p=perl%2Fmodules%2FTest-Valgrind.git diff --git a/lib/Test/Valgrind/Session.pm b/lib/Test/Valgrind/Session.pm index 93218ac..27aa973 100644 --- a/lib/Test/Valgrind/Session.pm +++ b/lib/Test/Valgrind/Session.pm @@ -9,11 +9,11 @@ Test::Valgrind::Session - Test::Valgrind session object. =head1 VERSION -Version 1.10 +Version 1.11 =cut -our $VERSION = '1.10'; +our $VERSION = '1.11'; =head1 DESCRIPTION @@ -218,7 +218,11 @@ sub _run { "Suppressions for this perl stored in $def_supp" )); } - push @supp_args, '--suppressions=' . $_ for $self->suppressions; + for ($self->suppressions) { + next unless -e $_; + $self->report($self->report_class->new_diag("Using suppression file $_")); + push @supp_args, "--suppressions=$_"; + } } pipe my $vrdr, my $vwtr or $self->_croak("pipe(\$vrdr, \$vwtr): $!"); @@ -314,7 +318,7 @@ sub parser_class { $_[0]->tool->parser_class($_[0]) } =head2 C -Calls C<< ->action->report_class >> with the current session object as the unique argument. +Calls C<< ->tool->report_class >> with the current session object as the unique argument. =cut