diff options
author | Donald Sharp <donaldsharp72@gmail.com> | 2025-01-16 14:11:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-16 14:11:07 +0100 |
commit | acc3cfe3349696be4d06137328c48e4ae97adc4a (patch) | |
tree | 84f424046d1502482e0ddf2d6503f0379733a832 /tests/topotests/bgp_evpn_rt5/test_bgp_evpn.py | |
parent | Merge pull request #17862 from LabNConsulting/chopps/ldp-snmp-fix (diff) | |
parent | tests: use global -w option instead of per-daemon -n (diff) | |
download | frr-acc3cfe3349696be4d06137328c48e4ae97adc4a.tar.xz frr-acc3cfe3349696be4d06137328c48e4ae97adc4a.zip |
Merge pull request #17727 from idryzhov/netns-all-daemons
lib: introduce global -w option for VRF netns backend
Diffstat (limited to 'tests/topotests/bgp_evpn_rt5/test_bgp_evpn.py')
-rw-r--r-- | tests/topotests/bgp_evpn_rt5/test_bgp_evpn.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/topotests/bgp_evpn_rt5/test_bgp_evpn.py b/tests/topotests/bgp_evpn_rt5/test_bgp_evpn.py index a9636a92f..c874cbed6 100644 --- a/tests/topotests/bgp_evpn_rt5/test_bgp_evpn.py +++ b/tests/topotests/bgp_evpn_rt5/test_bgp_evpn.py @@ -136,11 +136,9 @@ def setup_module(mod): for rname, router in router_list.items(): if rname == "r1": - router.load_config(TopoRouter.RD_MGMTD, None, "--vrfwnetns") + router.use_netns_vrf() router.load_config( - TopoRouter.RD_ZEBRA, - os.path.join(CWD, "{}/zebra.conf".format(rname)), - "--vrfwnetns", + TopoRouter.RD_ZEBRA, os.path.join(CWD, "{}/zebra.conf".format(rname)) ) else: router.load_config( |