test framework: vpp_papi_provider.py - further cleanup

Part of further cleanups of this file.
Removed most wrappers that don't have conflicting signature with
message API.

Change-Id: I6acd93d20291feb7731eb35ab2eb8c9f22f4632c
Signed-off-by: Ole Troan <ot@cisco.com>
This commit is contained in:
Ole Troan
2019-03-05 16:58:24 +01:00
parent fb6c75293c
commit 9a475373ed
15 changed files with 416 additions and 1272 deletions

View File

@@ -52,10 +52,10 @@ class VppPipe(VppInterface):
return False
def set_unnumbered(self, ip_sw_if_index, is_add=True):
res = self._test.vapi.sw_interface_set_unnumbered(
self.east, ip_sw_if_index, is_add)
res = self._test.vapi.sw_interface_set_unnumbered(
self.west, ip_sw_if_index, is_add)
res = self._test.vapi.sw_interface_set_unnumbered(ip_sw_if_index,
self.east, is_add)
res = self._test.vapi.sw_interface_set_unnumbered(ip_sw_if_index,
self.west, is_add)
class TestPipe(VppTestCase):