diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/test_bond.py | 1 | ||||
-rw-r--r-- | test/vpp_bond_interface.py | 4 | ||||
-rw-r--r-- | test/vpp_papi_provider.py | 3 |
3 files changed, 7 insertions, 1 deletions
diff --git a/test/test_bond.py b/test/test_bond.py index 03f0eea4c7e..d1ae77ad3f5 100644 --- a/test/test_bond.py +++ b/test/test_bond.py @@ -65,6 +65,7 @@ class TestBondInterface(VppTestCase): bond0 = VppBondInterface(self, mode=3, lb=1, + numa_only=0, use_custom_mac=1, mac_address=mac) bond0.add_vpp_config() diff --git a/test/vpp_bond_interface.py b/test/vpp_bond_interface.py index 153f1142c5c..f05a07b0ce2 100644 --- a/test/vpp_bond_interface.py +++ b/test/vpp_bond_interface.py @@ -5,19 +5,21 @@ 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 """ 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 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.set_sw_if_index(r.sw_if_index) diff --git a/test/vpp_papi_provider.py b/test/vpp_papi_provider.py index c6398323b6e..40c6045c517 100644 --- a/test/vpp_papi_provider.py +++ b/test/vpp_papi_provider.py @@ -2202,12 +2202,14 @@ class VppPapiProvider(object): self, mode, lb, + numa_only, use_custom_mac, mac_address='', interface_id=0xFFFFFFFF): """ :param mode: mode :param lb: load balance + :param numa_only: tx on local numa node for lacp mode :param use_custom_mac: use custom mac :param mac_address: mac address :param interface_id: custom interface ID @@ -2216,6 +2218,7 @@ class VppPapiProvider(object): self.papi.bond_create, {'mode': mode, 'lb': lb, + 'numa_only': numa_only, 'use_custom_mac': use_custom_mac, 'mac_address': mac_address, 'id': interface_id |