diff options
author | Christian Breunig <christian@breunig.cc> | 2024-10-06 15:19:09 +0200 |
---|---|---|
committer | Christian Breunig <christian@breunig.cc> | 2024-12-16 22:21:36 +0100 |
commit | 6544973ae66bbecaea8b6194a8bf6cd3eadf4fa8 (patch) | |
tree | c7761dc21c34f2d233c67550b97de72421f44768 /smoketest/scripts/cli/test_protocols_ospfv3.py | |
parent | 81923562a8a164f7ff9761e976c20420a585907a (diff) | |
download | vyos-1x-6544973ae66bbecaea8b6194a8bf6cd3eadf4fa8.tar.gz vyos-1x-6544973ae66bbecaea8b6194a8bf6cd3eadf4fa8.zip |
frr: T6747: ensure there are no daemon leftovers in vtysh CLI after smoketests
Diffstat (limited to 'smoketest/scripts/cli/test_protocols_ospfv3.py')
-rwxr-xr-x | smoketest/scripts/cli/test_protocols_ospfv3.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/smoketest/scripts/cli/test_protocols_ospfv3.py b/smoketest/scripts/cli/test_protocols_ospfv3.py index 989e1552d..f0892d576 100755 --- a/smoketest/scripts/cli/test_protocols_ospfv3.py +++ b/smoketest/scripts/cli/test_protocols_ospfv3.py @@ -54,6 +54,9 @@ class TestProtocolsOSPFv3(VyOSUnitTestSHIM.TestCase): self.cli_delete(base_path) self.cli_commit() + frrconfig = self.getFRRconfig('router ospf6') + self.assertNotIn(f'router ospf6', frrconfig) + # check process health and continuity self.assertEqual(self.daemon_pid, process_named_running(PROCESS_NAME)) |