summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Hopps <chopps@labn.net>2025-01-16 02:09:14 +0100
committerChristian Hopps <chopps@labn.net>2025-01-16 03:13:34 +0100
commitb0f9c4d68849b2545ba54e4e67513b748257d1cc (patch)
treeba9e0635c9dfec605240024ccb8b53e7c0a9a1fb
parentMerge pull request #17838 from opensourcerouting/msdp-topo3 (diff)
downloadfrr-b0f9c4d68849b2545ba54e4e67513b748257d1cc.tar.xz
frr-b0f9c4d68849b2545ba54e4e67513b748257d1cc.zip
tests: fix missed grpc test requirement for frr-backend addition
Signed-off-by: Christian Hopps <chopps@labn.net>
-rw-r--r--tests/topotests/grpc_basic/test_basic_grpc.py9
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/topotests/grpc_basic/test_basic_grpc.py b/tests/topotests/grpc_basic/test_basic_grpc.py
index 5ff2894fd..e82436c39 100644
--- a/tests/topotests/grpc_basic/test_basic_grpc.py
+++ b/tests/topotests/grpc_basic/test_basic_grpc.py
@@ -108,7 +108,7 @@ def test_capabilities(tgen):
logging.debug("grpc output: %s", output)
modules = sorted(re.findall('name: "([^"]+)"', output))
- expected = ["frr-interface", "frr-routing", "frr-staticd", "frr-vrf"]
+ expected = ["frr-backend", "frr-interface", "frr-routing", "frr-staticd", "frr-vrf"]
assert modules == expected
encodings = sorted(re.findall("supported_encodings: (.*)", output))
@@ -145,15 +145,10 @@ def test_get_config(tgen):
"ip": "192.168.1.1",
"prefix-length": 24
}
- ],
- "evpn-mh": {},
- "ipv6-router-advertisements": {}
+ ]
}
}
]
- },
- "frr-zebra:zebra": {
- "import-kernel-table": {}
}
} """
)