diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2017-06-22 01:39:49 +0000 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2017-06-24 01:22:41 +0200 |
commit | 13a3585274bc42e0bac03c750c7333aa26eadf5e (patch) | |
tree | c32e4e18f8ec0292c8383b47ff88d7fd27afce7a | |
parent | b1e325735643f28222b7016119236a1305496d69 (diff) | |
download | aports-13a3585274bc42e0bac03c750c7333aa26eadf5e.tar.bz2 aports-13a3585274bc42e0bac03c750c7333aa26eadf5e.tar.xz |
community/arpack: disable check() in ppc64le for now
Tests from arpack are hanging on ppc64le with abuild but tests work when
running manually (make check) and all tests pass. Disabling fakeroot for
check didn't help. Disabling ppc64le tests for now.
-rw-r--r-- | community/arpack/APKBUILD | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/community/arpack/APKBUILD b/community/arpack/APKBUILD index 89e4a0aaa6..3d05d5b16c 100644 --- a/community/arpack/APKBUILD +++ b/community/arpack/APKBUILD @@ -15,10 +15,9 @@ subpackages="$pkgname-dev $pkgname-doc" source="$pkgname-$pkgver.tar.gz::https://github.com/opencollab/$_pkgname/archive/$pkgver.tar.gz" builddir="$srcdir/$_pkgname-$pkgver" -# Tests hang on ppc64le when running via abuild, -# try to run them with fakeroot disabled. +# Tests hang on ppc64le when running via abuild, don't know why. case "$CARCH" in - ppc64le) options="!checkroot";; + ppc64le) options="!check";; esac _ilp64=no |