X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fvpp_bond_interface.py;h=f05a07b0ce2f5014d8ab5b7f870c66167819f1e9;hb=038e1dfbd;hp=1c33e1cecd6c05dc0a9806ea1b1352fc1333bd65;hpb=9cd2d7a5a4fafadb65d772c48109d55d1e19d425;p=vpp.git diff --git a/test/vpp_bond_interface.py b/test/vpp_bond_interface.py index 1c33e1cecd6..f05a07b0ce2 100644 --- a/test/vpp_bond_interface.py +++ b/test/vpp_bond_interface.py @@ -5,24 +5,24 @@ from vpp_interface import VppInterface class VppBondInterface(VppInterface): """VPP bond interface.""" - def __init__(self, test, mode, lb=0, + def __init__(self, test, mode, lb=0, numa_only=0, use_custom_mac=0, mac_address=''): """ Create VPP Bond interface """ - self._test = test + super(VppBondInterface, self).__init__(test) self.mode = mode self.lb = lb + self.numa_only = numa_only self.use_custom_mac = use_custom_mac self.mac_address = mac_address - self._sw_if_index = 0 - super(VppBondInterface, self).__init__(test) def add_vpp_config(self): r = self.test.vapi.bond_create(self.mode, self.lb, + self.numa_only, self.use_custom_mac, self.mac_address) - self._sw_if_index = r.sw_if_index + self.set_sw_if_index(r.sw_if_index) def remove_vpp_config(self): self.test.vapi.bond_delete(self.sw_if_index)