summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2008-11-12 13:15:36 +0100
committerSimon Josefsson <simon@josefsson.org>2008-11-12 13:15:36 +0100
commit6e86a54e3f6ce7ba6e53e223f3794ae41a7451e1 (patch)
tree3d5d146710b0d90165239711cd159ec45936e20a /m4
parentb561b18899c430b792854f4cdc0bc3e55ca92e01 (diff)
downloadgnutls-6e86a54e3f6ce7ba6e53e223f3794ae41a7451e1.tar.gz
Use external m4 files for shared tests.
Diffstat (limited to 'm4')
-rw-r--r--m4/valgrind.m430
1 files changed, 30 insertions, 0 deletions
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)
+])