Home | History | Annotate | Download | only in m4

Lines Matching refs:VALGRIND

12 #   AX_VALGRIND_CHECK checks whether Valgrind is present and, if so, allows
13 # running `make check` under a variety of Valgrind tools to check for
19 # the value of the --enable-valgrind option, which defaults to being
20 # enabled if Valgrind is installed and disabled otherwise. Individual
21 # Valgrind tools can be disabled via --disable-valgrind-<tool>, the
27 # LOG_COMPILER system, the $(VALGRIND) variable can be used within the
28 # shell scripts to enable Valgrind, as described here:
30 # https://www.gnu.org/software/gnulib/manual/html_node/Running-self_002dtests-under-valgrind.html
45 # This results in a "check-valgrind" rule being added to any Makefile.am
47 # configured with --enable-valgrind). Running `make check-valgrind` in
49 # each of the available Valgrind tools (out of memcheck, helgrind and drd)
51 # commandline with --enable-valgrind-sgcheck. The results for each check
55 # Alternatively, a "check-valgrind-$TOOL" rule will be added, for $TOOL in
83 dnl Check for --enable-valgrind
84 AC_ARG_ENABLE([valgrind],
85 [AS_HELP_STRING([--enable-valgrind], [Whether to enable Valgrind on the unit tests (requires GNU make)])],
89 # Check for Valgrind.
90 AC_CHECK_PROG([VALGRIND],[valgrind],[valgrind])
91 AS_IF([test "$VALGRIND" = ""],[
93 AC_MSG_ERROR([Could not find valgrind; either install it or reconfigure with --disable-valgrind])
105 # Check for Valgrind tools we care about.
108 AC_ARG_ENABLE([valgrind-]vgtool,
110 [AS_HELP_STRING([--enable-valgrind-]vgtool, [Whether to use ]vgtool[ during the Valgrind tests])],dnl
111 [AS_HELP_STRING([--disable-valgrind-]vgtool, [Whether to skip ]vgtool[ during the Valgrind tests])]),
118 AC_CACHE_CHECK([for Valgrind tool ]vgtool,
124 AS_IF([`$VALGRIND --tool=]vgtoolx[ --help >/dev/null 2>&1`],[
130 AC_MSG_ERROR([Valgrind does not support ]vgtool[; reconfigure with --disable-valgrind-]vgtool)
147 # Valgrind check
150 # - VALGRIND_SUPPRESSIONS_FILES: Space-separated list of Valgrind suppressions
152 # - VALGRIND_FLAGS: General flags to pass to all Valgrind tools.
154 # - VALGRIND_$toolname_FLAGS: Flags to pass to Valgrind $toolname (one of:
178 valgrind_v_use_0 = @echo " USE " $(patsubst check-valgrind-%,%,$''@):;
188 check-valgrind:
191 $(foreach tool, $(valgrind_enabled_tools), check-valgrind-$(tool))
193 @echo "Need to use GNU make and reconfigure with --enable-valgrind"
196 # Valgrind running
199 env VALGRIND=$(VALGRIND) \
205 $(VALGRIND) $(VALGRIND_SUPPRESSIONS) --error-exitcode=1 $(VALGRIND_FLAGS)
208 check-valgrind-$(1):
216 @echo "Need to reconfigure with --enable-valgrind-$(1)"
218 @echo "Need to reconfigure with --enable-valgrind"
225 A''M_DISTCHECK_CONFIGURE_FLAGS += --disable-valgrind
230 .PHONY: check-valgrind $(add-prefix check-valgrind-,$(valgrind_tools))
235 check-valgrind:
236 @echo "Need to use GNU make and reconfigure with --enable-valgrind"'