1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/malloc_thread_safety/Makefile
Marian Buschsieweke c9d63c9f4f
tests/malloc_thread_safety: new test
This test checks whether calling malloc in more than one thread is safe.
2020-12-17 15:39:05 +01:00

11 lines
215 B
Makefile

include ../Makefile.tests_common
USEMODULE += xtimer
include $(RIOTBASE)/Makefile.include
# Only newlib and picolib provide mallinfo
ifeq (,$(filter newlib picolibc,$(USEMODULE)))
CFLAGS += -DNO_MALLINFO
endif