summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2013-04-04 00:25:06 +0200
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2013-04-04 00:25:06 +0200
commite80657059aa21aaf24beebb99abc842b8ee0ca80 (patch)
tree7e3d8d244d90ed833dbf7f678fd3afa64195d92a /test
parent5c64b9e16917b1a7cb59c1c8fed8628904042f08 (diff)
add UCLIBC_SUSV2_LEGACY to hide valloc
valloc was marked as LEGACY in SUSv2, removed from SUSv3 and later. TODO: Remove this (point people to memalign and it's successors?). Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/malloc/Makefile.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/malloc/Makefile.in b/test/malloc/Makefile.in
index 7b8c0fabd..d14617d31 100644
--- a/test/malloc/Makefile.in
+++ b/test/malloc/Makefile.in
@@ -2,3 +2,7 @@
# Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
TESTS_DISABLED := time_malloc
+
+ifneq ($(UCLIBC_SUSV2_LEGACY),y)
+TESTS_DISABLED += tst-valloc
+endif