summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2024-10-31 10:43:28 +0200
committerMergify <37929162+mergify[bot]@users.noreply.github.com>2024-10-31 13:55:51 +0000
commit9474e8677e5cf6511a75047f3797a467933a44b1 (patch)
treeb6dba8fe224ab212ab8ff3cccfe80bcf4f95f6cd /tests
parentc8341f265f7bfcfd1d5011fe6eab40f2e8c6501f (diff)
tests: Add an ability to specify daemon params with unified config
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org> (cherry picked from commit 879466731bf36eaf696a29c8d96914443660dd74)
Diffstat (limited to 'tests')
-rw-r--r--tests/topotests/lib/topogen.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/topotests/lib/topogen.py b/tests/topotests/lib/topogen.py
index 14dd61b077..b1da296365 100644
--- a/tests/topotests/lib/topogen.py
+++ b/tests/topotests/lib/topogen.py
@@ -833,6 +833,8 @@ class TopoRouter(TopoGear):
Loads the unified configuration file source
Start the daemons in the list
If daemons is None, try to infer daemons from the config file
+ `daemons` is a tuple (daemon, param) of daemons to start, e.g.:
+ (TopoRouter.RD_ZEBRA, "-s 90000000").
"""
source_path = self.load_config(self.RD_FRR, source)
if not daemons:
@@ -849,8 +851,9 @@ class TopoRouter(TopoGear):
if result:
self.load_config(daemon, "")
else:
- for daemon in daemons:
- self.load_config(daemon, "")
+ for item in daemons:
+ daemon, param = item
+ self.load_config(daemon, "", param)
def load_config(self, daemon, source=None, param=None):
"""Loads daemon configuration from the specified source