2023-05-10 10:36:12 +02:00
|
|
|
include ../Makefile.sys_common
|
2020-06-12 12:00:15 +02:00
|
|
|
|
|
|
|
TEST_ZTIMER_CLOCK ?= ZTIMER_USEC
|
|
|
|
|
|
|
|
USEMODULE += ztimer
|
|
|
|
USEMODULE += ztimer_usec
|
|
|
|
ifeq ($(TEST_ZTIMER_CLOCK), ZTIMER_MSEC)
|
|
|
|
USEMODULE += ztimer_msec
|
|
|
|
endif
|
2021-01-07 10:29:41 +01:00
|
|
|
ifeq ($(TEST_ZTIMER_CLOCK), ZTIMER_SEC)
|
|
|
|
USEMODULE += ztimer_sec
|
|
|
|
endif
|
2020-06-12 12:00:15 +02:00
|
|
|
|
|
|
|
CFLAGS += -DTEST_ZTIMER_CLOCK=$(TEST_ZTIMER_CLOCK)
|
|
|
|
|
2022-04-01 12:21:20 +02:00
|
|
|
# microbit qemu failing currently
|
|
|
|
TEST_ON_CI_BLACKLIST += microbit
|
|
|
|
|
2024-02-07 23:12:16 +01:00
|
|
|
# This test randomly fails on `native` so disable it from CI
|
|
|
|
TEST_ON_CI_BLACKLIST += native native64
|
|
|
|
|
2020-06-12 12:00:15 +02:00
|
|
|
include $(RIOTBASE)/Makefile.include
|