diff options
author | Sam James <sam@gentoo.org> | 2021-11-26 04:32:21 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-11-26 04:32:21 +0000 |
commit | fe5576b173d07cc7427cc151055ea0ba3a42d10f (patch) | |
tree | 909eef5b566226925d112482047aa037cadb78de /sci-libs | |
parent | media-libs/openexr: mark newer versions as -ppc -sparc too (diff) | |
download | gentoo-fe5576b173d07cc7427cc151055ea0ba3a42d10f.tar.gz gentoo-fe5576b173d07cc7427cc151055ea0ba3a42d10f.tar.bz2 gentoo-fe5576b173d07cc7427cc151055ea0ba3a42d10f.zip |
sci-libs/indilib: backport test skip to 1.9.2
Bug: https://bugs.gentoo.org/763126
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sci-libs')
-rw-r--r-- | sci-libs/indilib/indilib-1.9.2.ebuild | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sci-libs/indilib/indilib-1.9.2.ebuild b/sci-libs/indilib/indilib-1.9.2.ebuild index f5901ff88e0f..d1a9b7106bd0 100644 --- a/sci-libs/indilib/indilib-1.9.2.ebuild +++ b/sci-libs/indilib/indilib-1.9.2.ebuild @@ -53,5 +53,17 @@ src_configure() { } src_test() { + local myctestargs=() + + if use ppc || use ppc64 || use sparc ; then + # Broken on big endian for quite some time. + # Reported upstream: file needs to be replaced w/ a normal library + # for b64. + # bug #763126 + myctestargs+=( + -E "(test_base64)" + ) + fi + BUILD_DIR="${BUILD_DIR}"/test cmake_src_test } |