1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 23:12:45 +01:00
RIOT/tests/sys/ztimer_underflow/Makefile

23 lines
517 B
Makefile
Raw Normal View History

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
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)
# microbit qemu failing currently
TEST_ON_CI_BLACKLIST += microbit
# 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