diff options
author | Damien George <damien@micropython.org> | 2025-07-23 00:54:21 +1000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-07-23 11:10:11 +1000 |
commit | f835b1626d797c98b6603c1a58e270aaa8c27053 (patch) | |
tree | 21ab8fd7731c4d43601ab2f31aa943cfcee31c57 | |
parent | 081213ec9dbdf78becc1eb0c2f2837397fd47d86 (diff) |
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 <damien@micropython.org>
-rwxr-xr-x | tools/ci.sh | 3 |
1 files changed, 2 insertions, 1 deletions
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 { |