diff options
author | Laszlo Kiraly <laszlo.kiraly@est.tech> | 2022-09-16 13:20:07 +0200 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2022-10-11 23:21:03 +0000 |
commit | 0f8f4351b03f9350a406ad1d63f97d1f4b59fec2 (patch) | |
tree | f1167a00efd992a453eacd8278bc4b1760015427 /test/test_l2_fib.py | |
parent | 7498aadd23eb4d5be2891041c9153cc5dff1a6cc (diff) |
l2: Add bridge_domain_add_del_v2 to l2 api
https://jira.fd.io/browse/VPP-2034
Type: fix
Signed-off-by: Laszlo Kiraly <laszlo.kiraly@est.tech>
Change-Id: Ieb6919f958f437fc603d5e1f48cab01de780951d
Diffstat (limited to 'test/test_l2_fib.py')
-rw-r--r-- | test/test_l2_fib.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test_l2_fib.py b/test/test_l2_fib.py index fe1ea458182..41b934dab42 100644 --- a/test/test_l2_fib.py +++ b/test/test_l2_fib.py @@ -112,7 +112,9 @@ class TestL2fib(VppTestCase): for bd_id in n_brs: # Create BD with MAC learning and unknown unicast flooding # disabled and put interfaces to this BD - cls.vapi.bridge_domain_add_del(bd_id=bd_id, uu_flood=0, learn=0) + cls.vapi.bridge_domain_add_del_v2( + bd_id=bd_id, is_add=1, uu_flood=0, learn=0, flood=1, forward=1 + ) ifs = [cls.pg_interfaces[i] for i in cls.bd_ifs(bd_id)] for pg_if in ifs: cls.vapi.sw_interface_set_l2_bridge( |