From: Daniel Stenberg Date: Fri, 24 Oct 2003 08:09:33 +0000 (+0000) Subject: produce a single summary of the amount of allocations on -v X-Git-Tag: curl-7_10_8~60 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=69bdb825862fda0ea1a7824674bb78b85adca9c6;p=thirdparty%2Fcurl.git produce a single summary of the amount of allocations on -v --- diff --git a/tests/memanalyze.pl b/tests/memanalyze.pl index dff25a8b2e..4c1f7630db 100755 --- a/tests/memanalyze.pl +++ b/tests/memanalyze.pl @@ -6,6 +6,10 @@ # MEM mprintf.c:1103 realloc(e5718, 64) = e6118 # MEM sendf.c:232 free(f6520) +my $mallocs=0; +my $reallocs=0; +my $strdups=0; + while(1) { if($ARGV[0] eq "-v") { $verbose=1; @@ -287,7 +291,8 @@ if($verbose) { print "Mallocs: $mallocs\n", "Reallocs: $reallocs\n", "Strdups: $strdups\n", - "Frees: $frees\n"; + "Frees: $frees\n", + "Allocations: ".($mallocs + $reallocs + $strdups)."\n"; print "Maximum allocated: $maxmem\n"; }