routing: add quagga IS-IS support
2 unresolved threads
2 unresolved threads
Signed-off-by: Dhanasekhar dhanasekhar1699@gmail.com
Merge request reports
Activity
14 14 15 15 # pylint: disable=invalid-name 16 16 @classmethod 17 17 def setUpClass(cls): This should be setUp(self) I think instead of setUpClass. setUpClass anf tearDown class will only run once, i.e., setUpClass will run before all tests and tearDownClass will run after all tests.
setUp will run before every test and tearDown will run after every test. This is what is required for quagga tests, to test that each routing algorithm produces the correct routes
changed this line in version 5 of the diff
40 40 eth_p2r2.set_address('10.0.3.4/24') 41 41 42 42 @classmethod 43 43 def tearDownClass(cls): This will also require changes in topology_map.. as shown here: https://gitlab.com/shanthanu9/nest/-/blob/add-experiment-unittest/nest/topology_map.py#L326
changed this line in version 5 of the diff
Please register or sign in to reply