diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-12-17 02:46:10 +0100 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2018-12-17 02:47:30 +0100 |
commit | 849d1ed9afb2ccec291137404e61e43b7a2a4cda (patch) | |
tree | b81ce9eec92a60a6f4689da72a0896c8cdee8827 /tests | |
parent | topotests: module_present should return a True/False (diff) | |
download | frr-849d1ed9afb2ccec291137404e61e43b7a2a4cda.tar.xz frr-849d1ed9afb2ccec291137404e61e43b7a2a4cda.zip |
topotests: Allow sharpd to be used in topotests
The sharp daemon did not have any ability to be used in
topotests. Add some code to allow this.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/topotests/lib/topotest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/lib/topotest.py b/tests/topotests/lib/topotest.py index d0346c1dd..c7f405fac 100644 --- a/tests/topotests/lib/topotest.py +++ b/tests/topotests/lib/topotest.py @@ -631,7 +631,7 @@ class Router(Node): self.daemons = {'zebra': 0, 'ripd': 0, 'ripngd': 0, 'ospfd': 0, 'ospf6d': 0, 'isisd': 0, 'bgpd': 0, 'pimd': 0, 'ldpd': 0, 'eigrpd': 0, 'nhrpd': 0, 'staticd': 0, - 'bfdd': 0} + 'bfdd': 0, 'sharpd': 0} self.daemons_options = {'zebra': ''} self.reportCores = True self.version = None |