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 <sharpd@nvidia.com>
This commit is contained in:
Donald Sharp 2023-07-01 13:27:52 -04:00
parent 9b38d8fec9
commit 481c540d28

View File

@ -255,7 +255,7 @@ def test_route_map_usage():
) )
ok, result = topotest.run_and_expect( 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 assert ok, result
@ -275,7 +275,7 @@ def test_route_map_usage():
) )
ok, result = topotest.run_and_expect( 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 assert ok, result