summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2025-07-13 17:10:53 +1000
committerDamien George <damien@micropython.org>2025-07-23 11:10:11 +1000
commit92193112bf0750615139b2d980667055a64a92a6 (patch)
tree0aa1d65a1034f7362b9462d5c59cde94f60b09b2 /tools
parent279f51d7d27adab0ffbf4db263f839eaf89cb659 (diff)
tools/ci.sh: Skip thread/stress_recurse.py on unix qemu test runs.
This test passes sometimes and fails other times. Eventually that should be fixed, but for now just skip this test. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/ci.sh9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/ci.sh b/tools/ci.sh
index dbfbaa54f..6656b860f 100755
--- a/tools/ci.sh
+++ b/tools/ci.sh
@@ -801,8 +801,9 @@ function ci_unix_qemu_mips_build {
function ci_unix_qemu_mips_run_tests {
# Issues with MIPS tests:
# - thread/stress_aes.py takes around 50 seconds
+ # - thread/stress_recurse.py is flaky
file ./ports/unix/build-coverage/micropython
- (cd tests && MICROPY_MICROPYTHON=../ports/unix/build-coverage/micropython MICROPY_TEST_TIMEOUT=90 ./run-tests.py)
+ (cd tests && MICROPY_MICROPYTHON=../ports/unix/build-coverage/micropython MICROPY_TEST_TIMEOUT=90 ./run-tests.py --exclude 'thread/stress_recurse.py')
}
function ci_unix_qemu_arm_setup {
@@ -823,8 +824,9 @@ function ci_unix_qemu_arm_run_tests {
# Issues with ARM tests:
# - (i)listdir does not work, it always returns the empty list (it's an issue with the underlying C call)
# - thread/stress_aes.py takes around 70 seconds
+ # - thread/stress_recurse.py is flaky
file ./ports/unix/build-coverage/micropython
- (cd tests && MICROPY_MICROPYTHON=../ports/unix/build-coverage/micropython MICROPY_TEST_TIMEOUT=90 ./run-tests.py --exclude 'vfs_posix.*\.py')
+ (cd tests && MICROPY_MICROPYTHON=../ports/unix/build-coverage/micropython MICROPY_TEST_TIMEOUT=90 ./run-tests.py --exclude 'vfs_posix.*\.py|thread/stress_recurse.py')
}
function ci_unix_qemu_riscv64_setup {
@@ -844,8 +846,9 @@ function ci_unix_qemu_riscv64_build {
function ci_unix_qemu_riscv64_run_tests {
# Issues with RISCV-64 tests:
# - thread/stress_aes.py takes around 140 seconds
+ # - thread/stress_recurse.py is flaky
file ./ports/unix/build-coverage/micropython
- (cd tests && MICROPY_MICROPYTHON=../ports/unix/build-coverage/micropython MICROPY_TEST_TIMEOUT=180 ./run-tests.py)
+ (cd tests && MICROPY_MICROPYTHON=../ports/unix/build-coverage/micropython MICROPY_TEST_TIMEOUT=180 ./run-tests.py --exclude 'thread/stress_recurse.py')
}
########################################################################################