From e288d5478875f02ad979142ba53855c3ed91e75c Mon Sep 17 00:00:00 2001 From: Martine Lenders Date: Fri, 5 Mar 2021 18:31:23 +0100 Subject: [PATCH] tests: add congure_quic to SFR CongURE test --- tests/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile b/tests/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile index e54abd367b47..d5a790c42a91 100644 --- a/tests/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile +++ b/tests/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile @@ -20,12 +20,18 @@ USEMODULE += netstats_rpl ifeq (,$(CONGURE_IMPL)) USEMODULE += gnrc_sixlowpan_frag_sfr_congure_sfr else +ifeq (congure_quic,$(CONGURE_IMPL)) + USEMODULE += gnrc_sixlowpan_frag_sfr_congure_quic + USEMODULE += ztimer_msec + USEMODULE += ztimer_periph_rtt +else ifeq (congure_sfr,$(CONGURE_IMPL)) USEMODULE += gnrc_sixlowpan_frag_sfr_congure_sfr else $(error "Unknown CongURE implementation `$(CONGURE_IMPL)`") endif endif +endif include $(RIOTBASE)/Makefile.include