From a7f4ff7b06c8c89bc92736034f7c5f2df48320a6 Mon Sep 17 00:00:00 2001 From: Artur Bieniek Date: Fri, 10 Oct 2025 12:37:53 +0200 Subject: [PATCH] Tests: Set higher timeout with ASAN (#6546) Signed-off-by: Artur Bieniek --- test_regress/t/t_opt_const_big_or_tree.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_regress/t/t_opt_const_big_or_tree.py b/test_regress/t/t_opt_const_big_or_tree.py index 8db9aac53..7fbda1fba 100755 --- a/test_regress/t/t_opt_const_big_or_tree.py +++ b/test_regress/t/t_opt_const_big_or_tree.py @@ -14,7 +14,7 @@ test.scenarios('vlt_all') if test.have_dev_gcov: test.skip("Too slow with code coverage") -test.timeout(10) +test.timeout(10 if not test.have_dev_asan else 30) test.compile(verilator_make_gmake=False)