From: Mukund Sivaraman Date: Wed, 19 Sep 2012 10:23:12 +0000 (+0530) Subject: [master] Track origin of uninitalized memory on all Valgrind targets X-Git-Tag: trac2351_base~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=febd7504e90b57453ca53ef754093adf1d7a8899;p=thirdparty%2Fkea.git [master] Track origin of uninitalized memory on all Valgrind targets --- diff --git a/Makefile.am b/Makefile.am index 0fbb78244f..1ed0d6325f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -30,7 +30,7 @@ endif check-valgrind-suppress: if HAVE_VALGRIND - @VALGRIND_COMMAND="$(VALGRIND) -q --gen-suppressions=all --error-exitcode=1 --suppressions=$(abs_top_srcdir)/src/valgrind-suppressions --suppressions=$(abs_top_srcdir)/src/valgrind-suppressions.revisit --num-callers=48 --leak-check=full --fullpath-after=" \ + @VALGRIND_COMMAND="$(VALGRIND) -q --gen-suppressions=all --track-origins=yes --error-exitcode=1 --suppressions=$(abs_top_srcdir)/src/valgrind-suppressions --suppressions=$(abs_top_srcdir)/src/valgrind-suppressions.revisit --num-callers=48 --leak-check=full --fullpath-after=" \ make -C $(abs_top_builddir) check else @echo "*** Valgrind is required for check-valgrind-suppress ***"; exit 1;