diff options
-rw-r--r-- | m4/valgrind.m4 | 1 | ||||
-rw-r--r-- | tests/Makefile.am | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/m4/valgrind.m4 b/m4/valgrind.m4 index 189ba088d6..0698d573fe 100644 --- a/m4/valgrind.m4 +++ b/m4/valgrind.m4 @@ -23,6 +23,7 @@ AC_DEFUN([sj_VALGRIND], if test -n "$VALGRIND" && $VALGRIND true > /dev/null 2>&1; then opt_valgrind_tests=yes + VALGRIND="$VALGRIND -q" else opt_valgrind_tests=no VALGRIND= diff --git a/tests/Makefile.am b/tests/Makefile.am index 6f205331cf..39dd595fe5 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -97,4 +97,4 @@ TESTS_ENVIRONMENT = \ PKCS12FILE_2=$(srcdir)/pkcs12-decode/pkcs12_2certs.p12 \ PKCS12PASSWORD_2="" \ EXEEXT=$(EXEEXT) \ - $(VALGRIND) -q + $(VALGRIND) |