diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-10-11 19:33:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-11 19:33:52 +0200 |
commit | 7f7705da4defc059fcb7d93692e8c87cb64cc68d (patch) | |
tree | 9e70bbcb6f3a348ffe8496446b4454c7afcf8d86 /smoketest/scripts | |
parent | 25b7d6a5a4e06ab99134ab13fc4861f431ffe2a0 (diff) | |
parent | 08c2a057917c357ccf6fac7b51e05d5dae780fc3 (diff) | |
download | vyos-1x-7f7705da4defc059fcb7d93692e8c87cb64cc68d.tar.gz vyos-1x-7f7705da4defc059fcb7d93692e8c87cb64cc68d.zip |
Merge pull request #1574 from Cheeze-It/current
isis: T4739: ISIS segment routing being refactored
Diffstat (limited to 'smoketest/scripts')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_isis.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/smoketest/scripts/cli/test_protocols_isis.py b/smoketest/scripts/cli/test_protocols_isis.py index e4bb9e1f8..c26028253 100755 --- a/smoketest/scripts/cli/test_protocols_isis.py +++ b/smoketest/scripts/cli/test_protocols_isis.py @@ -263,10 +263,10 @@ class TestProtocolsISIS(VyOSUnitTestSHIM.TestCase): self.assertIn(f' isis bfd profile {bfd_profile}', tmp) def test_isis_07_segment_routing_configuration(self): - global_block_low = "1000" - global_block_high = "1999" - local_block_low = "2000" - local_block_high = "2999" + global_block_low = "100" + global_block_high = "199" + local_block_low = "200" + local_block_high = "299" interface = 'lo' maximum_stack_size = '5' prefix_one = '192.168.0.1/32' @@ -280,7 +280,6 @@ class TestProtocolsISIS(VyOSUnitTestSHIM.TestCase): self.cli_set(base_path + ['net', net]) self.cli_set(base_path + ['interface', interface]) - self.cli_set(base_path + ['segment-routing', 'enable']) self.cli_set(base_path + ['segment-routing', 'maximum-label-depth', maximum_stack_size]) self.cli_set(base_path + ['segment-routing', 'global-block', 'low-label-value', global_block_low]) self.cli_set(base_path + ['segment-routing', 'global-block', 'high-label-value', global_block_high]) |