diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-02-24 16:20:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-24 16:20:01 +0100 |
commit | 3a035978afd007d98055b75de9025322ebdd8c3f (patch) | |
tree | 626fb9e5c28b22b0c57d2a40e1e61ac691ca8cbc | |
parent | 81aba9ff0dc8e74178802ab6e5073a9284726669 (diff) | |
parent | d1ec9d0ff5319fc491e1d60f455e2293ddfdefc2 (diff) | |
download | vyos-1x-3a035978afd007d98055b75de9025322ebdd8c3f.tar.gz vyos-1x-3a035978afd007d98055b75de9025322ebdd8c3f.zip |
Merge pull request #743 from sever-sever/T3211_smoke
smoketest: T3211: Extend smoketest for redistribute isis
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_bgp.py | 2 | ||||
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_rip.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/smoketest/scripts/cli/test_protocols_bgp.py b/smoketest/scripts/cli/test_protocols_bgp.py index 1d93aeda4..62ef40282 100755 --- a/smoketest/scripts/cli/test_protocols_bgp.py +++ b/smoketest/scripts/cli/test_protocols_bgp.py @@ -260,7 +260,7 @@ class TestProtocolsBGP(unittest.TestCase): } # We want to redistribute ... - redistributes = ['connected', 'kernel', 'ospf', 'rip', 'static'] + redistributes = ['connected', 'isis', 'kernel', 'ospf', 'rip', 'static'] for redistribute in redistributes: self.session.set(base_path + ['address-family', 'ipv4-unicast', 'redistribute', redistribute]) diff --git a/smoketest/scripts/cli/test_protocols_rip.py b/smoketest/scripts/cli/test_protocols_rip.py index 56c975d7a..4b3674960 100755 --- a/smoketest/scripts/cli/test_protocols_rip.py +++ b/smoketest/scripts/cli/test_protocols_rip.py @@ -71,7 +71,7 @@ class TestProtocolsRIP(unittest.TestCase): interfaces = Section.interfaces('ethernet') neighbors = ['1.2.3.4', '1.2.3.5', '1.2.3.6'] networks = ['10.0.0.0/8', '172.16.0.0/12', '192.168.0.0/16'] - redistribute = ['bgp', 'connected', 'kernel', 'ospf', 'static'] + redistribute = ['bgp', 'connected', 'isis', 'kernel', 'ospf', 'static'] timer_garbage = '888' timer_timeout = '1000' timer_update = '90' |