]> git.vpit.fr Git - perl/modules/Test-Valgrind.git/commitdiff
Use only 12 callers as default
authorVincent Pit <vince@profvince.com>
Mon, 25 Aug 2008 16:48:03 +0000 (18:48 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 25 Aug 2008 16:48:03 +0000 (18:48 +0200)
lib/Test/Valgrind.pm

index dd367da5b55646e4820bafdebb0e35a08714a5b3..29e88580d63def80614a37f1a01c4b5f612ff21d 100644 (file)
@@ -55,7 +55,7 @@ If true, do not use any suppressions.
 
 =item C<< callers => $number >>
 
-Specify the maximum stack depth studied when valgrind encounters an error. Raising this number improves granularity. Default is 50.
+Specify the maximum stack depth studied when valgrind encounters an error. Raising this number improves granularity. Default is 12.
 
 =item C<< extra => [ @args ] >>
 
@@ -88,7 +88,8 @@ sub import {
    $file = $next;
   }
   return if not $file or $file eq '-e';
-  my $callers = $args{callers} || 50;
+  my $callers = $args{callers};
+  $callers = 12 unless defined $callers;
   $callers = int $callers;
   my $vg = Test::Valgrind::Suppressions::VG_PATH;
   if (!$vg || !-x $vg) {