diff options
author | 2024-10-28 20:33:52 +0100 | |
---|---|---|
committer | 2024-10-28 20:44:31 +0100 | |
commit | b7ff4bc8b51d0e0c70cad78e6db27b800be913c9 (patch) | |
tree | 0cdf79f4f94e6cf4337f1fcf59f02f0aabe28434 /dev-lang/python/python-3.14.0_alpha1.ebuild | |
parent | dev-libs/userspace-rcu: drop 0.13.2 (diff) | |
download | gentoo-b7ff4bc8b51d0e0c70cad78e6db27b800be913c9.tar.gz gentoo-b7ff4bc8b51d0e0c70cad78e6db27b800be913c9.tar.bz2 gentoo-b7ff4bc8b51d0e0c70cad78e6db27b800be913c9.zip |
dev-lang/python: Skip test_gdb on ppc64 & sparc
The gdb tests are failing on devboxes. They were previously covered
by the unconditional `-x test_gdb` but that's been narrowed
to `-x test_pretty_print`, missing that other tests fail on these
architectures.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-lang/python/python-3.14.0_alpha1.ebuild')
-rw-r--r-- | dev-lang/python/python-3.14.0_alpha1.ebuild | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dev-lang/python/python-3.14.0_alpha1.ebuild b/dev-lang/python/python-3.14.0_alpha1.ebuild index acbfbfe8de8e..7f9f751bb5f4 100644 --- a/dev-lang/python/python-3.14.0_alpha1.ebuild +++ b/dev-lang/python/python-3.14.0_alpha1.ebuild @@ -296,6 +296,7 @@ src_configure() { powerpc64-*) # big endian COMMON_TEST_SKIPS+=( -x test_descr + -x test_gdb ) ;; riscv*) @@ -311,6 +312,7 @@ src_configure() { -x test_ctypes -x test_descr + -x test_gdb # bug 931908 -x test_exceptions ) |