diff options
author | Eyal Bari <ebari@cisco.com> | 2017-09-27 21:43:51 +0300 |
---|---|---|
committer | John Lo <loj@cisco.com> | 2017-10-02 01:29:44 +0000 |
commit | 24db0ec78fb651c4c585ebf30e07108240574045 (patch) | |
tree | 26e95fadc7eaa6319a39c6408c67ae8453dda5bf /test/vpp_papi_provider.py | |
parent | 981fadf928dadac683d2f629edf738aa91510af3 (diff) |
L2-FIB:add mac learn events test
fixes an issue where events were not sent if BD doesn't enable mac aging
Change-Id: Iddc53cb5c45e560633e6c5cff2731dccfc70ad5b
Signed-off-by: Eyal Bari <ebari@cisco.com>
Diffstat (limited to 'test/vpp_papi_provider.py')
-rw-r--r-- | test/vpp_papi_provider.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index 634dabeafda..b6759ec349e 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -431,6 +431,15 @@ class VppPapiProvider(object): 'address': address, 'pid': os.getpid(), }) + def want_macs_learn_events(self, enable_disable=1, scan_delay=0, + max_macs_in_event=0, learn_limit=0): + return self.api(self.papi.want_l2_macs_events, + {'enable_disable': enable_disable, + 'scan_delay': scan_delay, + 'max_macs_in_event': max_macs_in_event, + 'learn_limit': learn_limit, + 'pid': os.getpid(), }) + def l2fib_add_del(self, mac, bd_id, sw_if_index, is_add=1, static_mac=0, filter_mac=0, bvi_mac=0): """Create/delete L2 FIB entry. |