mirror of
git://sourceware.org/git/libabigail.git
synced 2024-12-13 21:44:52 +00:00
Do not ignore valgrind checks returning an error
Under "make check-valgrindk", when valgrind returns errors, these errors are ignored by make. It turns out it is the autoconf VALGRIND_CHECK_RULES macro that does this. Fixed thus. * autoconf-archive/ax_valgrind_check.m4 (check-valgrind): Don't ignore errors. Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
parent
8327d61b66
commit
f21ef03925
@ -184,10 +184,12 @@ else
|
||||
valgrind_lt =
|
||||
endif
|
||||
|
||||
# Use recursive makes in order to ignore errors during check
|
||||
# Initial comment: Use recursive makes in order to ignore errors during check
|
||||
# Dodji Comment: We do not want to ignore errors during checks.
|
||||
# We want Make to keep going as much as it can.
|
||||
check-valgrind:
|
||||
ifeq ($(VALGRIND_ENABLED),yes)
|
||||
-$(A''M_V_at)$(foreach tool,$(valgrind_enabled_tools), \
|
||||
$(A''M_V_at)$(foreach tool,$(valgrind_enabled_tools), \
|
||||
$(MAKE) $(AM_MAKEFLAGS) -k check-valgrind-$(tool); \
|
||||
)
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user