mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-14 12:41:21 +00:00
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:
parent
9b38d8fec9
commit
481c540d28
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user