From ce74a6b0a843f41b474c75a8d86388b675c56113 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Tue, 27 Aug 2024 10:29:13 -0400 Subject: [PATCH] tests: Fix route-scale at higher ecmp Recent commits moved the default retries to 60, but the higher ecmp counts were over-riding to 40. Let's make it 80. Noticed this when I went looking at failures on 386 platforms in our ci. Route scale is timing out when deleting routes. Signed-off-by: Donald Sharp --- tests/topotests/route_scale/scale_test_common.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/tests/topotests/route_scale/scale_test_common.py b/tests/topotests/route_scale/scale_test_common.py index 4b19bebe677d..bb95c6603168 100644 --- a/tests/topotests/route_scale/scale_test_common.py +++ b/tests/topotests/route_scale/scale_test_common.py @@ -119,7 +119,11 @@ def run_one_setup(r1, s): count = d["rib"] break - logger.info("Testing {} routes X {} ecmp".format(count, s["ecmp"])) + logger.info( + "Testing {} routes X {} ecmp, waiting {} retries {}".format( + count, s["ecmp"], wait, retries + ) + ) r1.vtysh_cmd( "sharp install route 1.0.0.0 \ @@ -193,8 +197,8 @@ def route_install_helper(iter): [2, "two"], [4, "four"], [8, "eight"], - [16, "sixteen", 10, 40], - [32, "thirtytwo", 10, 40], + [16, "sixteen", 10, 80], + [32, "thirtytwo", 10, 80], ] # Build up a list of dicts with params for each step of the test;