summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Zalamena <rzalamena@opensourcerouting.org>2021-06-17 09:08:39 -0300
committerRafael Zalamena <rzalamena@opensourcerouting.org>2021-06-25 15:06:20 -0300
commit858252d0c575e88bc07462e7e8f8bddf65fa62ca (patch)
tree0776e9cfed65b73473093c530667be2ce7f7d686
parent0ce04a08a3b6fc39d638e47203c78de74315b6fb (diff)
topotests: bump MSDP mesh group test wait time
On a loaded machine running FRR with ASAN I've got the following result: INFO: waiting MSDP connection from peer 10.254.254.3 on router r1 INFO: 'router_json_cmp' polling started (interval 1 secs, maximum 30 tries) INFO: 'router_json_cmp' succeeded after 22.53 seconds Which is very close to the limit, so lets bump the value 4x to avoid a test false positive. Signed-off-by: Rafael Zalamena <rzalamena@opensourcerouting.org>
-rw-r--r--tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py b/tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py
index 719ead091c..222fb28ade 100644
--- a/tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py
+++ b/tests/topotests/msdp_mesh_topo1/test_msdp_mesh_topo1.py
@@ -223,7 +223,7 @@ def test_wait_msdp_convergence():
"show ip msdp peer json",
{peer: {"state": "established", "saCount": sa_count}}
)
- _, result = topotest.run_and_expect(test_func, None, count=30, wait=1)
+ _, result = topotest.run_and_expect(test_func, None, count=40, wait=2)
assertmsg = '"{}" MSDP connection failure'.format(router)
assert result is None, assertmsg