diff mbox series

[hurd,commited] Rules: Also build memcheck tests even when not running them

Message ID 20240820142406.116824-1-samuel.thibault@ens-lyon.org
State New
Headers show
Series [hurd,commited] Rules: Also build memcheck tests even when not running them | expand

Commit Message

Samuel Thibault Aug. 20, 2024, 2:24 p.m. UTC
This will avoid in the future cases like a57cbbd85379 ("malloc: Link
threading tests with $(shared-thread-library") missing the memcheck
cases added in 251843e16fce ("malloc: Link threading tests with
$(shared-thread-library)")
---
 Rules | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/Rules b/Rules
index 9010c5d5b2..27846abf82 100644
--- a/Rules
+++ b/Rules
@@ -145,7 +145,11 @@  others: $(py-const)
 ifeq ($(run-built-tests),no)
 tests: $(addprefix $(objpfx),$(filter-out $(tests-unsupported), \
                                           $(tests) $(tests-internal) \
-					  $(tests-container)) \
+					  $(tests-container) \
+					  $(tests-mcheck:%=%-mcheck) \
+					  $(tests-malloc-check:%=%-malloc-check) \
+					  $(tests-malloc-hugetlb1:%=%-malloc-hugetlb1) \
+					  $(tests-malloc-hugetlb2:%=%-malloc-hugetlb2)) \
 			     $(test-srcs)) $(tests-special) \
 			     $(tests-printers-programs)
 xtests: tests $(xtests-special)