summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_interfaces_bonding.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-01-05 17:03:25 +0100
committerChristian Poessinger <christian@poessinger.com>2021-01-05 17:03:25 +0100
commit4ebe908b2d824a3cb7579de66efd20bdcbd401fc (patch)
treef21fba2208a6945c5e790153f0b6e191ff0b056a /smoketest/scripts/cli/test_interfaces_bonding.py
parent989cad9fbce72eaa7ba06b51ce70f33913a96417 (diff)
parentce809eee91aa2b7f2980dbfd191cdb9ad2947674 (diff)
downloadvyos-1x-4ebe908b2d824a3cb7579de66efd20bdcbd401fc.tar.gz
vyos-1x-4ebe908b2d824a3cb7579de66efd20bdcbd401fc.zip
Merge branch 'current' of github.com:vyos/vyos-1x into equuleus
* 'current' of github.com:vyos/vyos-1x: smoketest: mirror: T3169: re-add mirror / SPAN test case Revert "smoketest: bgp: enable description test" vyos.validate: import cleanup
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_bonding.py')
-rwxr-xr-xsmoketest/scripts/cli/test_interfaces_bonding.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_bonding.py b/smoketest/scripts/cli/test_interfaces_bonding.py
index d38e11a63..a35682b7c 100755
--- a/smoketest/scripts/cli/test_interfaces_bonding.py
+++ b/smoketest/scripts/cli/test_interfaces_bonding.py
@@ -26,17 +26,15 @@ from vyos.util import read_file
class BondingInterfaceTest(BasicInterfaceTest.BaseTest):
def setUp(self):
- super().setUp()
-
- self._base_path = ['interfaces', 'bonding']
- self._interfaces = ['bond0']
self._test_mtu = True
self._test_vlan = True
self._test_qinq = True
self._test_ipv6 = True
- self._test_mirror = True
-
+ self._base_path = ['interfaces', 'bonding']
+ self._interfaces = ['bond0']
+ self._mirror_interfaces = ['dum21354']
self._members = []
+
# we need to filter out VLAN interfaces identified by a dot (.)
# in their name - just in case!
if 'TEST_ETH' in os.environ:
@@ -50,6 +48,8 @@ class BondingInterfaceTest(BasicInterfaceTest.BaseTest):
for member in self._members:
self._options['bond0'].append(f'member interface {member}')
+ super().setUp()
+
def test_add_single_ip_address(self):
super().test_add_single_ip_address()