]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2036] Make valgrind run quietly so it looks like a regular make check
authorMukund Sivaraman <muks@isc.org>
Tue, 12 Jun 2012 16:10:57 +0000 (21:40 +0530)
committerMukund Sivaraman <muks@isc.org>
Tue, 12 Jun 2012 16:10:57 +0000 (21:40 +0530)
... except when there are issues.

configure.ac

index ce2146cc8ab93189bb0eaee5ee8c1202c90d73ac..f9ac081c960d4902e3214cf1bf1f9c38028a10a2 100644 (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)