diff mbox series

[v1] python3: ptest: skip flaky test_interrupt on musl

Message ID 20260820132154.29658-1-pratik.farkase@est.tech
State New
Headers show
Series [v1] python3: ptest: skip flaky test_interrupt on musl | expand

Commit Message

Pratik Farkase Aug. 20, 2026, 1:21 p.m. UTC
The test_interrupt test in test_multiprocessing_fork intermittently fails
on musl-based systems under load. The test sends an interrupt signal to a
child process and expects it to join within a timeout, but on loaded
autobuilder hosts the join times out with 'join took too long'.

This has been observed consistently on qemux86-64-musl-ptest across
multiple autobuilder runs. The same test class is tracked upstream at
https://github.com/python/cpython/issues/133651 and is part of the
broader timing-sensitive tests issue at
https://github.com/python/cpython/issues/130363

[YOCTO #16348]

Signed-off-by: Pratik Farkase <pratik.farkase@est.tech>
---
 meta/recipes-devtools/python/python3_3.14.7.bb | 1 +
 1 file changed, 1 insertion(+)
diff mbox series

Patch

diff --git a/meta/recipes-devtools/python/python3_3.14.7.bb b/meta/recipes-devtools/python/python3_3.14.7.bb
index 53a9ca59b5..568e632278 100644
--- a/meta/recipes-devtools/python/python3_3.14.7.bb
+++ b/meta/recipes-devtools/python/python3_3.14.7.bb
@@ -335,6 +335,7 @@  SKIPPED_TESTS:append:libc-musl = " \
     -x test_threading \
     --ignore test.test_strptime.StrptimeTests.test_date_locale2 \
     --ignore test.test_ctypes.test_dlerror.TestNullDlsym.test_null_dlsym \
+    --ignore test.test_multiprocessing_fork.test_processes.WithProcessesTestProcess.test_interrupt \
 "