diff options
| author | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2020-06-08 16:13:25 -0300 |
|---|---|---|
| committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2020-06-08 16:13:25 -0300 |
| commit | c2088e52fc11dbf06adc5793a6d13a8b45424142 (patch) | |
| tree | 5b8ffeb8a9614b0acb36a6f1c8caf257c1a51395 | |
| parent | 993db04388583e506ff51dcd29cb8afac3a80fe8 (diff) | |
topotests: remove old FRR version check
Topotest is now part of FRR repo and the code is versioned with the
tests.
Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
| -rwxr-xr-x | tests/topotests/ospf-sr-topo1/test_ospf_sr_topo1.py | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/topotests/ospf-sr-topo1/test_ospf_sr_topo1.py b/tests/topotests/ospf-sr-topo1/test_ospf_sr_topo1.py index 114de5861b..ac97ee7ebd 100755 --- a/tests/topotests/ospf-sr-topo1/test_ospf_sr_topo1.py +++ b/tests/topotests/ospf-sr-topo1/test_ospf_sr_topo1.py @@ -103,19 +103,6 @@ def setup_module(mod): # Initialize all routers. tgen.start_router() - # Verify that version, MPLS and Segment Routing are OK - for router in router_list.values(): - # Check for Version - if router.has_version("<", "4"): - tgen.set_error("Unsupported FRR version") - break - # Check that Segment Routing is available - output = tgen.gears[router.name].vtysh_cmd( - "show ip ospf database segment-routing json" - ) - if output.find("Unknown") != -1: - tgen.set_error("Segment Routing is not available") - def teardown_module(mod): "Teardown the pytest environment" |
