blob: 9e7cac9f01b8cc6d150eb846b4b0c91a392bca89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# uClibc malloc tests
# 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
ifneq ($(UCLIBC_HAS_OBSTACK),y)
TESTS_DISABLED += tst-obstack
endif
ifneq ($(MALLOC_STANDARD),y)
TESTS_DISABLED += tst-asprintf
endif
CFLAGS_tst-mallocfork = -fPIC
|