
marvin at rectangular
Sep 10, 2008, 8:11 AM
Views: 2441
Permalink
|
|
r3859 - trunk/perl/buildlib/Lucy
|
|
Author: creamyg Date: 2008-09-10 08:11:56 -0700 (Wed, 10 Sep 2008) New Revision: 3859 Modified: trunk/perl/buildlib/Lucy/Build.pm Log: Change valgrind arg to accomodate older Valgrind releases. Modified: trunk/perl/buildlib/Lucy/Build.pm =================================================================== --- trunk/perl/buildlib/Lucy/Build.pm 2008-09-10 14:35:18 UTC (rev 3858) +++ trunk/perl/buildlib/Lucy/Build.pm 2008-09-10 15:11:56 UTC (rev 3859) @@ -81,7 +81,7 @@ if $gcc_version > 3.4; # at least not on gcc 3.4 } } -my $VALGRIND = $ENV{CHARM_VALGRIND} ? "valgrind --leak-check=full " : ""; +my $VALGRIND = $ENV{CHARM_VALGRIND} ? "valgrind --leak-check=yes " : ""; =begin comment @@ -322,7 +322,7 @@ die "Can't find '$t_file'" unless -f $t_file; my $command = "PERL_DESTRUCT_LEVEL=2 KINO_VALGRIND=1 valgrind " - . "--leak-check=full " + . "--leak-check=yes " . "--show-reachable=yes " . "--suppressions=$supp_file " . "$^X -Mblib $t_file 2>&1"; _______________________________________________ kinosearch-commits mailing list kinosearch-commits [at] rectangular http://www.rectangular.com/mailman/listinfo/kinosearch-commits
|