summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3_3.13.7.bb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2025-08-22 11:33:52 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-08-25 17:47:21 +0100
commit6471b9a898b3e648c8a9b80322d120ee46be0d9a (patch)
tree9abda5b4dfdf7d76fa05a4e93024c8c94d081b15 /meta/recipes-devtools/python/python3_3.13.7.bb
parentd566c7bb8d27e073d7977d21e34b763c7af3fcb1 (diff)
downloadpoky-6471b9a898b3e648c8a9b80322d120ee46be0d9a.tar.gz
python3: Address failing ptests on musl
Take a partial patch to disable portion of test_makedev, its also applied in alpine. NODEV does not exist on musl Add test_null_dlsym to ignore list on musl, it needs GNU ifunc support and musl does not implement GNU ifuncs fixes Failed ptests: {'python3': ['test_null_dlsym', 'test_makedev', 'python3']} (From OE-Core rev: c197de49d6b406be5fc79b6e17c397c834efc1b0) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3_3.13.7.bb')
-rw-r--r--meta/recipes-devtools/python/python3_3.13.7.bb6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python3_3.13.7.bb b/meta/recipes-devtools/python/python3_3.13.7.bb
index 81d034bec6..2fe0ae1a8f 100644
--- a/meta/recipes-devtools/python/python3_3.13.7.bb
+++ b/meta/recipes-devtools/python/python3_3.13.7.bb
@@ -31,7 +31,9 @@ SRC_URI = "http://www.python.org/ftp/python/${PV}/Python-${PV}.tar.xz \
31 file://0001-test_readline-skip-limited-history-test.patch \ 31 file://0001-test_readline-skip-limited-history-test.patch \
32 file://0001-Generate-data-for-OpenSSL-3.4-and-add-it-to-multissl.patch \ 32 file://0001-Generate-data-for-OpenSSL-3.4-and-add-it-to-multissl.patch \
33 " 33 "
34 34SRC_URI:append:libc-musl = "\
35 file://test_posix_nodev_disable.patch \
36 "
35SRC_URI:append:class-native = " \ 37SRC_URI:append:class-native = " \
36 file://0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch \ 38 file://0001-Lib-sysconfig.py-use-prefix-value-from-build-configu.patch \
37 " 39 "
@@ -247,7 +249,7 @@ do_install:append:class-nativesdk () {
247} 249}
248 250
249do_install_ptest:append:class-target:libc-musl () { 251do_install_ptest:append:class-target:libc-musl () {
250 sed -i -e 's|SKIPPED_TESTS=|SKIPPED_TESTS="-x test__locale -x test_c_locale_coercion -x test_locale -x test_os test_re -x test__xxsubinterpreters -x test_threading --ignore test.test_strptime.StrptimeTests.test_date_locale2"|' ${D}${PTEST_PATH}/run-ptest 252 sed -i -e 's|SKIPPED_TESTS=|SKIPPED_TESTS="-x test__locale -x test_c_locale_coercion -x test_locale -x test_os test_re -x test__xxsubinterpreters -x test_threading --ignore test.test_strptime.StrptimeTests.test_date_locale2 --ignore test.test_ctypes.test_dlerror.TestNullDlsym.test_null_dlsym"|' ${D}${PTEST_PATH}/run-ptest
251} 253}
252 254
253SYSROOT_PREPROCESS_FUNCS:append:class-target = " provide_target_config_script" 255SYSROOT_PREPROCESS_FUNCS:append:class-target = " provide_target_config_script"