summaryrefslogtreecommitdiff
path: root/dev-lang/python/python-3.13.5_p1.ebuild
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2025-08-07 23:12:09 +0100
committerSam James <sam@gentoo.org>2025-08-07 23:12:09 +0100
commite14cbe784e276bdd62354a0f354bb39b8b3a33bb (patch)
treef96612a192a3c05361852ad95db9d9662ed62aec /dev-lang/python/python-3.13.5_p1.ebuild
parent0f9156b70858e86588e2a274b806a58793ecb3ed (diff)
downloadgentoo-e14cbe784e276bdd62354a0f354bb39b8b3a33bb.tar.gz
gentoo-e14cbe784e276bdd62354a0f354bb39b8b3a33bb.tar.bz2
gentoo-e14cbe784e276bdd62354a0f354bb39b8b3a33bb.zip
dev-lang/python: always skip test_gdb
Running gdb inside an ebuild as non-root, within sandbox, and possibly within a container is unreliable. Closes: https://bugs.gentoo.org/941296 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'dev-lang/python/python-3.13.5_p1.ebuild')
-rw-r--r--dev-lang/python/python-3.13.5_p1.ebuild19
1 files changed, 3 insertions, 16 deletions
diff --git a/dev-lang/python/python-3.13.5_p1.ebuild b/dev-lang/python/python-3.13.5_p1.ebuild
index 38480e11b2b3..b6cd0106feae 100644
--- a/dev-lang/python/python-3.13.5_p1.ebuild
+++ b/dev-lang/python/python-3.13.5_p1.ebuild
@@ -258,6 +258,9 @@ src_configure() {
# Set baseline test skip flags.
COMMON_TEST_SKIPS=(
+ # running gdb inside an ebuild as non-root, within sandbox,
+ # and possibly within a container is unreliable
+ -x test_gdb
# this is actually test_gdb.test_pretty_print
-x test_pretty_print
# https://bugs.gentoo.org/933840
@@ -283,16 +286,6 @@ src_configure() {
-x test_strtod
)
;;
- arm*|aarch64*)
- COMMON_TEST_SKIPS+=(
- -x test_gdb
- )
- ;;
- hppa*)
- COMMON_TEST_SKIPS+=(
- -x test_gdb
- )
- ;;
mips*)
COMMON_TEST_SKIPS+=(
-x test_ctypes
@@ -300,11 +293,6 @@ src_configure() {
-x test_statistics
)
;;
- powerpc64-*) # big endian
- COMMON_TEST_SKIPS+=(
- -x test_gdb
- )
- ;;
riscv*)
COMMON_TEST_SKIPS+=(
-x test_urllib2
@@ -318,7 +306,6 @@ src_configure() {
-x test_multiprocessing_spawn
-x test_ctypes
- -x test_gdb
# bug 931908
-x test_exceptions
)