1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/event_wait_timeout_ztimer/Makefile

18 lines
438 B
Makefile

include ../Makefile.tests_common
FORCE_ASSERTS = 1
USEMODULE += event
USEMODULE += ztimer_usec ztimer_msec
USEMODULE += core_thread_flags
# stm32f030f4-demo doesn't have enough RAM to run the test
# so we reduce the stack size for every thread
ifneq (,$(filter stm32f030f4-demo,$(BOARD)))
CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512
endif
# microbit qemu lacks rtt
TEST_ON_CI_BLACKLIST += microbit
include $(RIOTBASE)/Makefile.include