diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-12 20:53:40 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-12 21:23:04 +0100 |
commit | 910919d856d790ff8905d513c280fdf12f8892ef (patch) | |
tree | 4fa5ada3faeb8a8ecd19006d5cfb00b2aebf7526 /smoketest/scripts/cli/test_interfaces_bonding.py | |
parent | 92f3673538e0328488c14c90c8acf7ea6b2141ba (diff) | |
download | vyos-1x-910919d856d790ff8905d513c280fdf12f8892ef.tar.gz vyos-1x-910919d856d790ff8905d513c280fdf12f8892ef.zip |
smoketest: interface: enable ip/ipv6 tests on additional interfaces
Diffstat (limited to 'smoketest/scripts/cli/test_interfaces_bonding.py')
-rwxr-xr-x | smoketest/scripts/cli/test_interfaces_bonding.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_interfaces_bonding.py b/smoketest/scripts/cli/test_interfaces_bonding.py index d73ff09e9..f42ec3e9b 100755 --- a/smoketest/scripts/cli/test_interfaces_bonding.py +++ b/smoketest/scripts/cli/test_interfaces_bonding.py @@ -27,10 +27,11 @@ from vyos.util import read_file class BondingInterfaceTest(BasicInterfaceTest.BaseTest): def setUp(self): self._test_ip = True + self._test_ipv6 = True + self._test_ipv6_pd = True self._test_mtu = True self._test_vlan = True self._test_qinq = True - self._test_ipv6 = True self._base_path = ['interfaces', 'bonding'] self._interfaces = ['bond0'] self._mirror_interfaces = ['dum21354'] |