tests: Fix zebra_seg6_route to give more time for routes to be installed

This test is failing upstream regularly, when inspecting the log
files we see that the route being looked for is in a queued state
when the test fails.  Give this test more time for when the
system is under severe load.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
This commit is contained in:
Donald Sharp 2023-07-29 13:24:55 -04:00
parent 3984301417
commit e566e565c5

View File

@ -86,7 +86,7 @@ def test_zebra_seg6local_routes():
)
logger.info("CHECK {} {} {}".format(dest, nh, sid))
test_func = partial(check, r1, dest, manifest["out"])
success, result = topotest.run_and_expect(test_func, None, count=5, wait=1)
success, result = topotest.run_and_expect(test_func, None, count=20, wait=1)
assert result is None, "Failed"