diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-03-30 18:11:42 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2010-03-30 18:11:42 +0200 |
commit | 0e7a3f059504df3fad633b6d5b9b67f973674e2a (patch) | |
tree | f933314b201d91936561e3f59467bbf1a2c783f3 | |
parent | 32bf9ae015b6764cb79eff346e699965ae7f26d3 (diff) | |
download | gnutls-0e7a3f059504df3fad633b6d5b9b67f973674e2a.tar.gz |
Valgrind -q is now set by the valgrind detection script to avoid issue when running tests without valgrind.
-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) |