Lines Matching +full:valgrind +full:-
2 # https://www.gnu.org/software/autoconf-archive/ax_valgrind_check.html
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.ht…
42 # VALGRIND_SUPPRESSIONS_FILES = my-project.supp
43 # EXTRA_DIST = my-project.supp
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
52 # will be output to test-suite-$toolname.log. The target will succeed if
55 # Alternatively, a "check-valgrind-$TOOL" rule will be added, for $TOOL in
64 # Copyright (c) 2016-2017 The strace developers.
68 # and this notice are preserved. This file is offered as-is, without any
85 dnl Check for --enable-valgrind
86 AC_ARG_ENABLE([valgrind],
87 … [AS_HELP_STRING([--enable-valgrind], [Whether to enable Valgrind on the unit tests])],
91 # Check for Valgrind.
92 AC_CHECK_PROG([VALGRIND],[valgrind],[valgrind])
93 AS_IF([test "$VALGRIND" = ""],[
95 … AC_MSG_ERROR([Could not find valgrind; either install it or reconfigure with --disable-valgrind])
106 AM_EXTRA_RECURSIVE_TARGETS([check-valgrind])
108 # Check for Valgrind tools we care about.
111 AC_ARG_ENABLE([valgrind-]vgtool,
113 [AS_HELP_STRING([--enable-valgrind-]vgtool, [Whether to use ]vgtool[ during the Valgrind tests])],d…
114 [AS_HELP_STRING([--disable-valgrind-]vgtool, [Whether to skip ]vgtool[ during the Valgrind tests])]…
121 AC_CACHE_CHECK([for Valgrind tool ]vgtool,
125 [m4_define([vgtoolx],[exp-]vgtool)],
127 AS_IF([`$VALGRIND --tool=]vgtoolx[ --help >/dev/null 2>&1`],[
133 AC_MSG_ERROR([Valgrind does not support ]vgtool[; reconfigure with --disable-valgrind-]vgtool)
142 valgrind_enabled_tools="$valgrind_enabled_tools ]m4_bpatsubst(vgtool,[^exp-])["
145 AM_EXTRA_RECURSIVE_TARGETS([check-valgrind-]vgtool)
151 # Valgrind check
154 # - VALGRIND_SUPPRESSIONS_FILES: Space-separated list of Valgrind suppressions
156 # - VALGRIND_FLAGS: General flags to pass to all Valgrind tools.
157 # (Default: --num-callers=30)
158 # - VALGRIND_$toolname_FLAGS: Flags to pass to Valgrind $toolname (one of:
162 VALGRIND_SUPPRESSIONS ?= $(addprefix --suppressions=,$(VALGRIND_SUPPRESSIONS_FILES))
163 VALGRIND_FLAGS ?= --num-callers=30
164 VALGRIND_memcheck_FLAGS ?= --leak-check=full --show-reachable=no
165 VALGRIND_helgrind_FLAGS ?= --history-level=approx
170 valgrind_log_files = $(addprefix test-suite-,$(addsuffix .log,$(valgrind_tools)))
172 valgrind_memcheck_flags = --tool=memcheck $(VALGRIND_memcheck_FLAGS)
173 valgrind_helgrind_flags = --tool=helgrind $(VALGRIND_helgrind_FLAGS)
174 valgrind_drd_flags = --tool=drd $(VALGRIND_drd_FLAGS)
175 valgrind_sgcheck_flags = --tool=exp-sgcheck $(VALGRIND_sgcheck_FLAGS)
179 valgrind_quiet_0 = --quiet
182 valgrind_v_use_0 = @echo " USE " $(patsubst check-valgrind-%,%,$''@):;
186 valgrind_lt = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=execute
192 check-valgrind:
194 $(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) -k \
195 $(foreach tool, $(valgrind_enabled_tools), check-valgrind-$(tool))
197 @echo "Need to reconfigure with --enable-valgrind"
200 # Valgrind running
203 env VALGRIND=$(VALGRIND) \
204 G_SLICE=always-malloc,debug-blocks \
205 G_DEBUG=fatal-warnings,fatal-criticals,gc-friendly
209 $(VALGRIND) $(VALGRIND_SUPPRESSIONS) --error-exitcode=1 $(VALGRIND_FLAGS)
212 check-valgrind-$(1): $$(BUILT_SOURCES)
213 ifeq ($$(VALGRIND_ENABLED)-$$(ENABLE_VALGRIND_$(1)),yes-yes)
214 $$(valgrind_v_use)$$(MAKE) $$(AM_MAKEFLAGS) check-am \
218 TEST_SUITE_LOG=test-suite-$(1).log
220 @echo "Need to reconfigure with --enable-valgrind-$(1)"
222 @echo "Need to reconfigure with --enable-valgrind"
229 A''M_DISTCHECK_CONFIGURE_FLAGS += --disable-valgrind
234 .PHONY: check-valgrind $(add-prefix check-valgrind-,$(valgrind_tools))