diff options
| author | Matoro Mahri <matoro_gentoo@matoro.tk> | 2024-05-28 11:45:16 -0400 |
|---|---|---|
| committer | Michał Górny <mgorny@gentoo.org> | 2024-05-29 13:52:28 +0200 |
| commit | 538db5c4dd47d9383cbeb8a3f23757a7477213d6 (patch) | |
| tree | cd50bede339ae5e1f3dabc833ac27dd39a5d6f32 /dev-lang/python/python-3.13.0_beta1_p3.ebuild | |
| parent | 8df481d1cebf997d93b72a09bba95ae6cbd45567 (diff) | |
| download | gentoo-538db5c4dd47d9383cbeb8a3f23757a7477213d6.tar.gz gentoo-538db5c4dd47d9383cbeb8a3f23757a7477213d6.tar.bz2 gentoo-538db5c4dd47d9383cbeb8a3f23757a7477213d6.zip | |
dev-lang/python: arch-specific test skips for alpha
Bug: https://bugs.gentoo.org/931888
Bug: https://bugs.gentoo.org/653850
Signed-off-by: Matoro Mahri <matoro_gentoo@matoro.tk>
Closes: https://github.com/gentoo/gentoo/pull/36875
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-lang/python/python-3.13.0_beta1_p3.ebuild')
| -rw-r--r-- | dev-lang/python/python-3.13.0_beta1_p3.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-lang/python/python-3.13.0_beta1_p3.ebuild b/dev-lang/python/python-3.13.0_beta1_p3.ebuild index 54b95e896355..8ebd76666f3f 100644 --- a/dev-lang/python/python-3.13.0_beta1_p3.ebuild +++ b/dev-lang/python/python-3.13.0_beta1_p3.ebuild @@ -278,6 +278,19 @@ src_configure() { # Arch-specific skips. See #931888 for a collection of these. case ${ARCH} in + alpha) + profile_task_flags+=( + -x test_builtin + -x test_cmath + -x test_float + -x test_math + -x test_numeric_tower + -x test_os # PGO only + -x test_random + -x test_resource # bug 653850 + -x test_strtod + ) + ;; hppa) profile_task_flags+=( -x test_descr @@ -510,6 +523,20 @@ src_test() { -x test_exceptions # bug 931908 ) ;; + alpha) + test_opts+=( + -x test_builtin + -x test_capi # skipped in PGO already + -x test_cmath + -x test_float + -x test_free_threading # timeout + -x test_math + -x test_numeric_tower + -x test_random + -x test_resource # bug 653850 + -x test_strtod + ) + ;; esac # workaround docutils breaking tests |
