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:24:34 +0100 |
commit | 0377085171f83b5ca6f4099350eb2e849c496945 (patch) | |
tree | 751c7e030fac9003a814ba811089c94dbf91fafd /smoketest/scripts/cli/base_interfaces_test.py | |
parent | 96e86c57c97e391e130fb3a971bf82de0efa59cd (diff) | |
download | vyos-1x-0377085171f83b5ca6f4099350eb2e849c496945.tar.gz vyos-1x-0377085171f83b5ca6f4099350eb2e849c496945.zip |
smoketest: interface: enable ip/ipv6 tests on additional interfaces
(cherry picked from commit 910919d856d790ff8905d513c280fdf12f8892ef)
Diffstat (limited to 'smoketest/scripts/cli/base_interfaces_test.py')
-rw-r--r-- | smoketest/scripts/cli/base_interfaces_test.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/base_interfaces_test.py b/smoketest/scripts/cli/base_interfaces_test.py index 8b04eb337..36b085c7f 100644 --- a/smoketest/scripts/cli/base_interfaces_test.py +++ b/smoketest/scripts/cli/base_interfaces_test.py @@ -57,6 +57,7 @@ class BasicInterfaceTest: _test_vlan = False _test_qinq = False _test_ipv6 = False + _test_ipv6_pd = False _test_mirror = False _base_path = [] @@ -367,7 +368,7 @@ class BasicInterfaceTest: def test_dhcpv6pd_auto_sla_id(self): - if not self._test_ipv6: + if not self._test_ipv6_pd: self.skipTest('not enabled') prefix_len = '56' @@ -423,7 +424,7 @@ class BasicInterfaceTest: self.session.delete(['interfaces', section, delegatee]) def test_dhcpv6pd_manual_sla_id(self): - if not self._test_ipv6: + if not self._test_ipv6_pd: self.skipTest('not enabled') prefix_len = '56' |