From 2a47088034c78f2f04f03ac1232d097ecdad7ec3 Mon Sep 17 00:00:00 2001 From: Mark Xiao Date: Tue, 10 Mar 2026 03:42:51 -0700 Subject: [PATCH] Increase timeout for test_crm.py::test_acl_counter (#22672) Some platforms need a slightly longer timeout for ACL counter resources Signed-off-by: markxiao Signed-off-by: mssonicbld --- tests/crm/test_crm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/crm/test_crm.py b/tests/crm/test_crm.py index 9abb4bbd796..2e233cf2be5 100755 --- a/tests/crm/test_crm.py +++ b/tests/crm/test_crm.py @@ -1350,7 +1350,7 @@ def test_acl_counter(duthosts, enum_rand_one_per_hwsku_frontend_hostname, enum_f expected_acl_counter_used = new_crm_stats_acl_counter_used + actual_acl_count - CRM_COUNTER_TOLERANCE logger.info("Waiting for {} ACL counter resources to stabilize".format(actual_acl_count)) wait_for_crm_counter_update(get_acl_counter_stats, duthost, expected_used=expected_acl_counter_used, - oper_used=">=", timeout=60, interval=5) + oper_used=">=", timeout=90, interval=5) new_crm_stats_acl_counter_used, new_crm_stats_acl_counter_available = \ get_crm_stats(get_acl_counter_stats, duthost)