2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 05:27:55 +00:00

[2036] Make valgrind run quietly so it looks like a regular make check

... except when there are issues.
This commit is contained in:
Mukund Sivaraman 2012-06-12 21:40:57 +05:30
parent 090ccd31e4
commit a66e8c4e5d

View File

@ -991,7 +991,7 @@ AC_ARG_ENABLE(valgrind, [AC_HELP_STRING([--enable-valgrind],
AM_CONDITIONAL(ENABLE_VALGRIND, test "x$enable_valgrind" != "xno")
if test "x$VALGRIND" != "xno" -a "x$enable_valgrind" != "xno"; then
VALGRIND_COMMAND="$VALGRIND --gen-suppressions=all --suppressions=\$(top_srcdir)/src/valgrind-suppressions --suppressions=\$(top_srcdir)/src/valgrind-suppressions.revisit --num-callers=24 --leak-check=full --track-fds=yes --fullpath-after="
VALGRIND_COMMAND="$VALGRIND -q --gen-suppressions=all --suppressions=\$(top_srcdir)/src/valgrind-suppressions --suppressions=\$(top_srcdir)/src/valgrind-suppressions.revisit --num-callers=24 --leak-check=full --track-fds=yes --fullpath-after="
fi
AC_SUBST(VALGRIND_COMMAND)