From 84ba92a99b2cb60e43775fb78dac0cb91108bf40 Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Tue, 2 Nov 2021 10:54:37 +0100 Subject: [PATCH] tests: remove uneeded explicit inclusion of ztimer_periph_rt* --- tests/ztimer_msg/Makefile | 8 ++++---- tests/ztimer_underflow/Makefile | 2 -- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/ztimer_msg/Makefile b/tests/ztimer_msg/Makefile index 7289b23ccd..247bbc2030 100644 --- a/tests/ztimer_msg/Makefile +++ b/tests/ztimer_msg/Makefile @@ -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 diff --git a/tests/ztimer_underflow/Makefile b/tests/ztimer_underflow/Makefile index 2a44cfd641..88ca9a1bb7 100644 --- a/tests/ztimer_underflow/Makefile +++ b/tests/ztimer_underflow/Makefile @@ -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)