From 59759c6c7d9fc2a9b700c593fddc5652601458ae Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Tue, 3 Dec 2024 20:08:30 +0100 Subject: [PATCH] Fixed several tests which needed static protocol Now they need device protocol which is always built. --- test/bt-utils.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/bt-utils.h b/test/bt-utils.h index d29a0b7c..f44b479c 100644 --- a/test/bt-utils.h +++ b/test/bt-utils.h @@ -20,8 +20,8 @@ #define ARGip6_BOTH(x,i) ARGip6_HIGH(x,i), ARGip6_LOW(x,i) #define ARGip6(x) ARGip6_BOTH((x), 0), ARGip6_BOTH((x), 1), ARGip6_BOTH((x), 2), ARGip6_BOTH((x), 3) -#define BT_CONFIG_PARSE_ROUTER_ID "router id 1.1.1.1; \n" -#define BT_CONFIG_PARSE_STATIC_PROTO "protocol static { ipv4; } \n" +#define BT_CONFIG_PARSE_ROUTER_ID "router id 42; \n" +#define BT_CONFIG_PARSE_STATIC_PROTO "protocol device {} \n" #define BT_CONFIG_SIMPLE BT_CONFIG_PARSE_ROUTER_ID BT_CONFIG_PARSE_STATIC_PROTO uint bt_naive_pow(uint base, uint power);