summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRafael Zalamena <rzalamena@users.noreply.github.com>2019-01-23 11:34:10 -0200
committerGitHub <noreply@github.com>2019-01-23 11:34:10 -0200
commitea0b310ccdfb18541af82b144561bee9d3114c7e (patch)
tree3afc71f9f115900972c7acf1efcf4f4e49400533
parent313731ac921b2afdf94fb0aea71e8d503bd20895 (diff)
parent848b4fc33b29a6b9fc991f14fc020ab95d189681 (diff)
Merge pull request #3649 from donaldsharp/increase_timeout
topotests: Modify bgp convergence to be more than 120 seconds
-rw-r--r--tests/topotests/bfd-topo1/test_bfd_topo1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/topotests/bfd-topo1/test_bfd_topo1.py b/tests/topotests/bfd-topo1/test_bfd_topo1.py
index 91904c6aae..4fd4f97436 100644
--- a/tests/topotests/bfd-topo1/test_bfd_topo1.py
+++ b/tests/topotests/bfd-topo1/test_bfd_topo1.py
@@ -138,7 +138,7 @@ def test_bgp_convergence():
expected = json.loads(open(ref_file).read())
test_func = partial(topotest.router_json_cmp,
router, 'show ip bgp summary json', expected)
- _, res = topotest.run_and_expect(test_func, None, count=20, wait=0.5)
+ _, res = topotest.run_and_expect(test_func, None, count=125, wait=1.0)
assertmsg = '{}: bgp did not converge'.format(router.name)
assert res is None, assertmsg