From 753e0c86c817c71475e2aebbd7a944df7e1b7d0d 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 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile b/tests/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile index 4e97854f3a1b..2e7f40701705 100644 --- a/tests/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile +++ b/tests/gnrc_sixlowpan_frag_sfr_congure_impl/Makefile @@ -30,11 +30,16 @@ endif CONGURE_IMPL ?= congure_sfr +ifeq (congure_quic,$(CONGURE_IMPL)) + USEMODULE += gnrc_sixlowpan_frag_sfr_congure_quic + USEMODULE += ztimer_msec +else ifeq (congure_sfr,$(CONGURE_IMPL)) USEMODULE += gnrc_sixlowpan_frag_sfr_congure_sfr else $(error "Unknown CongURE implementation `$(CONGURE_IMPL)`") endif +endif .PHONY: zep_dispatch