From 481c540d280b3b1d2b55ec3838e414b82d37ddc1 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Sat, 1 Jul 2023 13:27:52 -0400 Subject: [PATCH] tests: zebra_rib route-map run times fixup I have a local test run where the sharp route-map usage was being checked for 5 seconds. I saw usages going up for each 1 second check and the 5th one was at 497 out of 500. Looks like the system was really loaded. Let's give it more time to coalesce under heavy load. Signed-off-by: Donald Sharp --- tests/topotests/zebra_rib/test_zebra_rib.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/topotests/zebra_rib/test_zebra_rib.py b/tests/topotests/zebra_rib/test_zebra_rib.py index c45ac82d30..05036fa7ad 100644 --- a/tests/topotests/zebra_rib/test_zebra_rib.py +++ b/tests/topotests/zebra_rib/test_zebra_rib.py @@ -255,7 +255,7 @@ def test_route_map_usage(): ) ok, result = topotest.run_and_expect( - check_static_map_correct_runs, "", count=5, wait=1 + check_static_map_correct_runs, "", count=10, wait=1 ) assert ok, result @@ -275,7 +275,7 @@ def test_route_map_usage(): ) ok, result = topotest.run_and_expect( - check_sharp_map_correct_runs, "", count=5, wait=1 + check_sharp_map_correct_runs, "", count=10, wait=1 ) assert ok, result -- 2.39.5