1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 22:43:50 +01:00
2025-04-01 12:39:06 +02:00

23 lines
519 B
Makefile

include ../Makefile.sys_common
TEST_ZTIMER_CLOCK ?= ZTIMER_USEC
USEMODULE += ztimer
USEMODULE += ztimer_usec
ifeq ($(TEST_ZTIMER_CLOCK), ZTIMER_MSEC)
USEMODULE += ztimer_msec
endif
ifeq ($(TEST_ZTIMER_CLOCK), ZTIMER_SEC)
USEMODULE += ztimer_sec
endif
CFLAGS += -DTEST_ZTIMER_CLOCK=$(TEST_ZTIMER_CLOCK)
# microbit qemu failing currently
TEST_ON_CI_BLACKLIST += microbit
# This test randomly fails on `native` so disable it from CI
TEST_ON_CI_BLACKLIST += native32 native64
include $(RIOTBASE)/Makefile.include