aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2025-06-17 14:22:49 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2025-06-17 14:22:49 -0300
commitc274c3c07f216791d2065e653e418eb36c6dcaca (patch)
tree55b4cc601d58d513a230310d3b67b9ad97cd24a4
parent9f680bfe9b5c8657baf1fd0fb99e968d0b03e92e (diff)
downloadglibc-c274c3c07f216791d2065e653e418eb36c6dcaca.zip
glibc-c274c3c07f216791d2065e653e418eb36c6dcaca.tar.gz
glibc-c274c3c07f216791d2065e653e418eb36c6dcaca.tar.bz2
malloc: Fix tests-malloc-largetcache tests
The commit cde5caa4bb21d5c474b9e4762cc847bcbc70e481 added the tests-malloc-largetcache without adjusting the previous entry. The make check fails with: make[1]: Entering directory '/path/to/glibc' make subdir=csu -C csu ..=../ tests make[2]: Entering directory '/path/to/glibc/csu' make[2]: *** No rule to make target ')', needed by 'tests'. Stop. make[2]: Leaving directory '/path/to/csu' make[1]: *** [Makefile:484: csu/tests] Error 2
-rw-r--r--Rules2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rules b/Rules
index 7fac16e..44c041c 100644
--- a/Rules
+++ b/Rules
@@ -152,7 +152,7 @@ tests: $(addprefix $(objpfx),$(filter-out $(tests-unsupported), \
$(tests-mcheck:%=%-mcheck) \
$(tests-malloc-check:%=%-malloc-check) \
$(tests-malloc-hugetlb1:%=%-malloc-hugetlb1) \
- $(tests-malloc-hugetlb2:%=%-malloc-hugetlb2)) \
+ $(tests-malloc-hugetlb2:%=%-malloc-hugetlb2) \
$(tests-malloc-largetcache:%=%-malloc-largetcache)) \
$(test-srcs)) $(tests-special) \
$(tests-printers-programs)