diff options
| author | Mark Stapp <mjs.ietf@gmail.com> | 2024-08-29 08:17:34 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-29 08:17:34 -0400 |
| commit | ac2d9bae5c706c54e5c0feaa55a1c47513a7b64b (patch) | |
| tree | 08176b80048a7099138e990235ef29a12422b7d2 | |
| parent | 12a3d5a748964086297f5f9fce11adad796393fc (diff) | |
| parent | ce74a6b0a843f41b474c75a8d86388b675c56113 (diff) | |
Merge pull request #16680 from donaldsharp/route_scale_minor_changes
tests: Fix route-scale at higher ecmp
| -rw-r--r-- | tests/topotests/route_scale/scale_test_common.py | 10 |
1 files 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 4b19bebe67..bb95c66031 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; |
