From e566e565c5ff7b5c28a43ba30ff888729d66d3df Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Sat, 29 Jul 2023 13:24:55 -0400 Subject: [PATCH] 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 --- tests/topotests/zebra_seg6_route/test_zebra_seg6_route.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/topotests/zebra_seg6_route/test_zebra_seg6_route.py b/tests/topotests/zebra_seg6_route/test_zebra_seg6_route.py index 1d01263d9a..4b462a51e5 100755 --- a/tests/topotests/zebra_seg6_route/test_zebra_seg6_route.py +++ b/tests/topotests/zebra_seg6_route/test_zebra_seg6_route.py @@ -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" -- 2.39.5