aboutsummaryrefslogtreecommitdiff
path: root/testing/hwloc
diff options
context:
space:
mode:
authorLeonardo Arena <rnalrd@alpinelinux.org>2019-08-28 14:31:33 +0000
committerLeonardo Arena <rnalrd@alpinelinux.org>2019-08-28 14:31:33 +0000
commit5f8831267cbce74cae4322d79ce9684ec7dcf568 (patch)
tree0329be2d2b967f865fe56cecff97ad700a811c35 /testing/hwloc
parentd29c7bd83feef587bb2005932d045d0318d83aa8 (diff)
downloadalpine_aports-5f8831267cbce74cae4322d79ce9684ec7dcf568.tar.bz2
alpine_aports-5f8831267cbce74cae4322d79ce9684ec7dcf568.tar.xz
alpine_aports-5f8831267cbce74cae4322d79ce9684ec7dcf568.zip
testing/hwloc: disable tests on x86 and ppc64le
x86: FAIL: linux-libnuma ppc64le: FAIL: hwloc_insert_misc
Diffstat (limited to 'testing/hwloc')
-rw-r--r--testing/hwloc/APKBUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/hwloc/APKBUILD b/testing/hwloc/APKBUILD
index 528e22c682..f9470f0fe0 100644
--- a/testing/hwloc/APKBUILD
+++ b/testing/hwloc/APKBUILD
@@ -1,7 +1,7 @@
1# Maintainer: Daniel Sabogal <dsabogalcc@gmail.com> 1# Maintainer: Daniel Sabogal <dsabogalcc@gmail.com>
2pkgname=hwloc 2pkgname=hwloc
3pkgver=1.11.13 3pkgver=1.11.13
4pkgrel=0 4pkgrel=1
5pkgdesc="Portable abstraction of hierarchical hardware architectures" 5pkgdesc="Portable abstraction of hierarchical hardware architectures"
6url="https://www.open-mpi.org/" 6url="https://www.open-mpi.org/"
7arch="all" 7arch="all"
@@ -9,6 +9,7 @@ license="BSD-3-Clause"
9makedepends="cairo-dev eudev-dev libxml2-dev ncurses-dev" 9makedepends="cairo-dev eudev-dev libxml2-dev ncurses-dev"
10case "$CARCH" in 10case "$CARCH" in
11 arm*) true;; 11 arm*) true;;
12 x86 | ppc64le) options="!check";; # some tests fail
12 *) makedepends="$makedepends numactl-dev";; 13 *) makedepends="$makedepends numactl-dev";;
13esac 14esac
14subpackages="$pkgname-dev $pkgname-doc $pkgname-tools:_tools" 15subpackages="$pkgname-dev $pkgname-doc $pkgname-tools:_tools"