]> git.puffer.fish Git - mirror/frr.git/commitdiff
tests: Fix zebra_seg6_route to give more time for routes to be installed
authorDonald Sharp <sharpd@nvidia.com>
Sat, 29 Jul 2023 17:24:55 +0000 (13:24 -0400)
committerDonald Sharp <sharpd@nvidia.com>
Sat, 29 Jul 2023 17:39:37 +0000 (13:39 -0400)
This test is failing upstream regularly, when inspecting the log
files we see that the route being looked for is in a queued state
when the test fails.  Give this test more time for when the
system is under severe load.

Signed-off-by: Donald Sharp <sharpd@nvidia.com>
tests/topotests/zebra_seg6_route/test_zebra_seg6_route.py

index 1d01263d9a3a655a0f4950b4f81c03f3214288b4..4b462a51e522b01bf93878c252f4c190cef8f9b3 100755 (executable)
@@ -86,7 +86,7 @@ def test_zebra_seg6local_routes():
         )
         logger.info("CHECK {} {} {}".format(dest, nh, sid))
         test_func = partial(check, r1, dest, manifest["out"])
-        success, result = topotest.run_and_expect(test_func, None, count=5, wait=1)
+        success, result = topotest.run_and_expect(test_func, None, count=20, wait=1)
         assert result is None, "Failed"