X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FTest%2FValgrind.pm;h=9b233c73e9371553de86006a01ae275031133b19;hb=01d49783af4ec2292a5fe23164bbef36119613e0;hp=8da4a0a50b7da9e08c942c46b0fee842a0c3714b;hpb=5b7da288da2757d62ecaa3de0c40ea876ef9be2b;p=perl%2Fmodules%2FTest-Valgrind.git diff --git a/lib/Test/Valgrind.pm b/lib/Test/Valgrind.pm index 8da4a0a..9b233c7 100644 --- a/lib/Test/Valgrind.pm +++ b/lib/Test/Valgrind.pm @@ -96,7 +96,7 @@ C<< callers => $number >> Specify the maximum stack depth studied when valgrind encounters an error. Raising this number improves granularity. -Ignored if you supply your own custom C, otherwise defaults to C<12>. +Ignored if you supply your own custom C, otherwise defaults to C<50>. =item * @@ -124,6 +124,14 @@ Defaults to false. =item * +C<< allow_no_supp => $bool >> + +If true, force running the analysis even if the suppression files do not refer to any C-related symbol. + +Defaults to false. + +=item * + C<< extra_supps => \@files >> Also use suppressions from C<@files> besides C's. @@ -220,7 +228,12 @@ sub analyse { my $sess = eval { Test::Valgrind::Session->new( min_version => $tool->requires_version, - map { $_ => delete $args{$_} } qw + map { $_ => delete $args{$_} } qw< + regen_def_supp + no_def_supp + allow_no_supp + extra_supps + > ); }; unless ($sess) {