1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

tests: remove uneeded explicit inclusion of ztimer_periph_rt*

This commit is contained in:
Francisco Molina 2021-11-02 10:54:37 +01:00
parent 7c3360e4d6
commit 84ba92a99b
2 changed files with 4 additions and 6 deletions

View File

@ -2,10 +2,10 @@ include ../Makefile.tests_common
USEMODULE += ztimer_usec
# uncomment this to test using ztimer msec on rtt
#USEMODULE += ztimer_msec ztimer_periph_rtt
# uncomment this to test using ztimer msec
#USEMODULE += ztimer_msec
# uncomment this to test using ztimer sec on rtc
#USEMODULE += ztimer_sec ztimer_periph_rtc
# uncomment this to test using ztimer sec
#USEMODULE += ztimer_sec
include $(RIOTBASE)/Makefile.include

View File

@ -6,7 +6,6 @@ USEMODULE += ztimer
USEMODULE += ztimer_usec
ifeq ($(TEST_ZTIMER_CLOCK), ZTIMER_MSEC)
USEMODULE += ztimer_msec
USEMODULE += ztimer_periph_rtt
# the same for Kconfig
ifeq (1,$(TEST_KCONFIG))
KCONFIG_ADD_CONFIG += $(APPDIR)/app.config.msec.test
@ -14,7 +13,6 @@ ifeq ($(TEST_ZTIMER_CLOCK), ZTIMER_MSEC)
endif
ifeq ($(TEST_ZTIMER_CLOCK), ZTIMER_SEC)
USEMODULE += ztimer_sec
USEMODULE += ztimer_periph_rtc
endif
CFLAGS += -DTEST_ZTIMER_CLOCK=$(TEST_ZTIMER_CLOCK)