From 3a78d75cd562bc246a855574ec564cdb95385a96 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Tue, 5 Mar 2024 15:55:07 -0500 Subject: [PATCH] tests: test invokes a script which does not exist Apparently test_bgp_peer_type_multipath_relax.py does no really need to run a `setup_vrfs` script. Looking at the other configuration for this test there are no vrf's in the frr configuration. So let's remove it Signed-off-by: Donald Sharp --- .../test_bgp_peer-type_multipath-relax.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/topotests/bgp_peer_type_multipath_relax/test_bgp_peer-type_multipath-relax.py b/tests/topotests/bgp_peer_type_multipath_relax/test_bgp_peer-type_multipath-relax.py index 9239be9221..340df71a19 100755 --- a/tests/topotests/bgp_peer_type_multipath_relax/test_bgp_peer-type_multipath-relax.py +++ b/tests/topotests/bgp_peer_type_multipath_relax/test_bgp_peer-type_multipath-relax.py @@ -103,7 +103,6 @@ def setup_module(mod): # For all registered routers, load the zebra configuration file for rname, router in tgen.routers().items(): - router.run("/bin/bash {}/setup_vrfs".format(CWD)) router.load_config( TopoRouter.RD_ZEBRA, os.path.join(CWD, "{}/zebra.conf".format(rname)) ) -- 2.39.5