summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_protocols_ospf.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-10-11 07:37:31 +0200
committerChristian Poessinger <christian@poessinger.com>2022-10-11 07:37:33 +0200
commite5507b247edc37c466ef0d023417c65ebbad409b (patch)
treefbc6d26385ed1c86e2905372e796b7aa81c927d0 /smoketest/scripts/cli/test_protocols_ospf.py
parent428c5f43ad9cc93831b25057f160c24469cca21b (diff)
downloadvyos-1x-e5507b247edc37c466ef0d023417c65ebbad409b.tar.gz
vyos-1x-e5507b247edc37c466ef0d023417c65ebbad409b.zip
smoketest: ospf: skip segment-routing test as of FRR issue
See https://github.com/FRRouting/frr/issues/12007
Diffstat (limited to 'smoketest/scripts/cli/test_protocols_ospf.py')
-rwxr-xr-xsmoketest/scripts/cli/test_protocols_ospf.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/smoketest/scripts/cli/test_protocols_ospf.py b/smoketest/scripts/cli/test_protocols_ospf.py
index 4bf9c9b73..93bb761c1 100755
--- a/smoketest/scripts/cli/test_protocols_ospf.py
+++ b/smoketest/scripts/cli/test_protocols_ospf.py
@@ -408,13 +408,16 @@ class TestProtocolsOSPF(VyOSUnitTestSHIM.TestCase):
self.cli_commit()
# Verify all changes
+
frrconfig = self.getFRRconfig('router ospf')
- self.assertIn(f' segment-routing on', frrconfig)
self.assertIn(f' segment-routing global-block {global_block_low} {global_block_high} local-block {local_block_low} {local_block_high}', frrconfig)
self.assertIn(f' segment-routing node-msd {maximum_stack_size}', frrconfig)
self.assertIn(f' segment-routing prefix {prefix_one} index {prefix_one_value} explicit-null', frrconfig)
self.assertIn(f' segment-routing prefix {prefix_two} index {prefix_two_value} no-php-flag', frrconfig)
+ self.skipTest('https://github.com/FRRouting/frr/issues/12007')
+ self.assertIn(f' segment-routing on', frrconfig)
+
if __name__ == '__main__':
unittest.main(verbosity=2)