2023-05-10 10:36:12 +02:00
|
|
|
include ../Makefile.sys_common
|
2015-08-14 16:04:53 +02:00
|
|
|
|
|
|
|
USEMODULE += xtimer
|
|
|
|
|
2019-09-02 16:37:05 +02:00
|
|
|
# This test randomly fails on `native` so disable it from CI
|
|
|
|
TEST_ON_CI_BLACKLIST += native
|
|
|
|
|
2019-10-19 19:24:16 +02:00
|
|
|
# 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
|
|
|
|
|
2022-04-01 12:21:20 +02:00
|
|
|
# microbit qemu failing currently
|
|
|
|
TEST_ON_CI_BLACKLIST += microbit
|
|
|
|
|
2015-08-14 16:04:53 +02:00
|
|
|
include $(RIOTBASE)/Makefile.include
|