diff options
author | 2024-08-20 16:22:07 +0200 | |
---|---|---|
committer | 2024-08-20 16:23:03 +0200 | |
commit | 734e7f91e752f44984fe42c2384c23a0290b6e56 (patch) | |
tree | b531f9d9a88d926b920631d6563b34be07859c2f /Rules | |
parent | malloc: Link threading tests with $(shared-thread-library) (diff) | |
download | glibc-734e7f91e752f44984fe42c2384c23a0290b6e56.tar.gz glibc-734e7f91e752f44984fe42c2384c23a0290b6e56.tar.bz2 glibc-734e7f91e752f44984fe42c2384c23a0290b6e56.zip |
Rules: Also build memcheck tests even when not running them
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)")
Diffstat (limited to 'Rules')
-rw-r--r-- | Rules | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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) |