From 6e86a54e3f6ce7ba6e53e223f3794ae41a7451e1 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Wed, 12 Nov 2008 13:15:36 +0100 Subject: Use external m4 files for shared tests. --- m4/valgrind.m4 | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 m4/valgrind.m4 (limited to 'm4/valgrind.m4') diff --git a/m4/valgrind.m4 b/m4/valgrind.m4 new file mode 100644 index 0000000000..0cd106abeb --- /dev/null +++ b/m4/valgrind.m4 @@ -0,0 +1,30 @@ +# valgrind.m4 serial 1 +dnl Copyright (C) 2008 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +dnl From Simon Josefsson + +# sj_VALGRIND() +# ------------- +# Check if valgrind is available, and set VALGRIND to it if available. +AC_DEFUN([sj_VALGRIND], +[ + # Run self-tests under valgrind? + if test "$cross_compiling" = no; then + AC_CHECK_PROGS(VALGRIND, valgrind) + fi + if test -n "$VALGRIND" && $VALGRIND true > /dev/null 2>&1; then + opt_valgrind_tests=yes + else + opt_valgrind_tests=no + VALGRIND= + fi + AC_MSG_CHECKING([whether self tests are run under valgrind]) + AC_ARG_ENABLE(valgrind-tests, + AS_HELP_STRING([--enable-valgrind-tests], + [run self tests under valgrind]), + opt_valgrind_tests=$enableval) + AC_MSG_RESULT($opt_valgrind_tests) +]) -- cgit v1.2.1