diff options
author | Matej Klotton <mklotton@cisco.com> | 2016-12-07 15:09:13 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2016-12-09 09:03:19 +0000 |
commit | 16a14cdb160160573e2d1ed69a52998cc30ce34f (patch) | |
tree | bdef4db8e6c821c771131cae6a83a1073d8176ba /test/vpp_papi_provider.py | |
parent | 82a06a9335d39068007206ad4946ff0e83aa269d (diff) |
make test: FIB add/update/delete - ip4 routes
- JIRA:CSIT-483
Change-Id: Idb4c5bd7a234bc975f3380ece58c0e8d4bfdafd9
Signed-off-by: Matej Klotton <mklotton@cisco.com>
Diffstat (limited to 'test/vpp_papi_provider.py')
-rw-r--r-- | test/vpp_papi_provider.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index c45518bd2c1..3fdb428e19f 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -540,6 +540,9 @@ class VppPapiProvider(object): 'next_hop_via_label': next_hop_via_label, 'next_hop_out_label_stack': next_hop_out_label_stack}) + def ip_fib_dump(self): + return self.api(self.papi.ip_fib_dump, {}) + def ip_neighbor_add_del(self, sw_if_index, mac_address, |