From f835b1626d797c98b6603c1a58e270aaa8c27053 Mon Sep 17 00:00:00 2001 From: Damien George Date: Wed, 23 Jul 2025 00:54:21 +1000 Subject: [PATCH] tools/ci.sh: Increase timeout for stackless clang test runs. Stackless mode makes `tests/thread/stress_aes.py` slow, around 75 seconds for this CI job (probably due to contention among the many threads for the GC lock, to allocate frames for function calls). So increase the timeout to allow this test to pass. Signed-off-by: Damien George --- tools/ci.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/ci.sh b/tools/ci.sh index a1700fbd3..99168cff6 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -720,7 +720,8 @@ function ci_unix_stackless_clang_build { } function ci_unix_stackless_clang_run_tests { - ci_unix_run_tests_helper CC=clang + # Timeout needs to be increased for thread/stress_aes.py test. + MICROPY_TEST_TIMEOUT=90 ci_unix_run_tests_helper CC=clang } function ci_unix_float_clang_build {