From 5f8831267cbce74cae4322d79ce9684ec7dcf568 Mon Sep 17 00:00:00 2001 From: Leonardo Arena Date: Wed, 28 Aug 2019 14:31:33 +0000 Subject: [PATCH] testing/hwloc: disable tests on x86 and ppc64le x86: FAIL: linux-libnuma ppc64le: FAIL: hwloc_insert_misc --- testing/hwloc/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/hwloc/APKBUILD b/testing/hwloc/APKBUILD index 528e22c6824..f9470f0fe05 100644 --- a/testing/hwloc/APKBUILD +++ b/testing/hwloc/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Daniel Sabogal pkgname=hwloc pkgver=1.11.13 -pkgrel=0 +pkgrel=1 pkgdesc="Portable abstraction of hierarchical hardware architectures" url="https://www.open-mpi.org/" arch="all" @@ -9,6 +9,7 @@ license="BSD-3-Clause" makedepends="cairo-dev eudev-dev libxml2-dev ncurses-dev" case "$CARCH" in arm*) true;; + x86 | ppc64le) options="!check";; # some tests fail *) makedepends="$makedepends numactl-dev";; esac subpackages="$pkgname-dev $pkgname-doc $pkgname-tools:_tools"