From 6a6a4621bca7dfca2647e0a121f73694bd3c7d90 Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Wed, 8 Jan 2025 09:41:21 -0500 Subject: [PATCH] tests: bgp_srv6_sid_reachability should give more time The test starts right in on check_pings with a 10 second time out. Any type of delay on startup is going to cause problems. Give the first check_ping significant time for the test to be fully brought up. Signed-off-by: Donald Sharp (cherry picked from commit b46d3a1a4224564f05a51a73b5932c33ddec0bad) --- .../bgp_srv6_sid_reachability/test_bgp_srv6_sid_reachability.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/topotests/bgp_srv6_sid_reachability/test_bgp_srv6_sid_reachability.py b/tests/topotests/bgp_srv6_sid_reachability/test_bgp_srv6_sid_reachability.py index f8385401c5ad..cf590ad01dba 100755 --- a/tests/topotests/bgp_srv6_sid_reachability/test_bgp_srv6_sid_reachability.py +++ b/tests/topotests/bgp_srv6_sid_reachability/test_bgp_srv6_sid_reachability.py @@ -99,7 +99,7 @@ def teardown_module(mod): def test_ping(): tgen = get_topogen() - check_ping("c11", "192.168.2.1", True, 10, 1) + check_ping("c11", "192.168.2.1", True, 120, 1) check_ping("c11", "192.168.3.1", True, 10, 1) check_ping("c12", "192.168.2.1", True, 10, 1) check_ping("c12", "192.168.3.1", True, 10, 1)