From f899f6aeaaa4848a734e2c9eda73471fce0a503d Mon Sep 17 00:00:00 2001 From: Henrik Riomar Date: Thu, 7 Feb 2019 22:27:59 +0100 Subject: [PATCH] testing/numactl: disable tests on s390x FAIL: distance test --- testing/numactl/APKBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/testing/numactl/APKBUILD b/testing/numactl/APKBUILD index dec27865030..ccfe62950e9 100644 --- a/testing/numactl/APKBUILD +++ b/testing/numactl/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Daniel Sabogal pkgname=numactl pkgver=2.0.12 -pkgrel=1 +pkgrel=2 pkgdesc="Simple NUMA policy support" url="https://github.com/numactl/numactl" # ARM lacks the __NR_migrate_pages syscall @@ -9,6 +9,9 @@ arch="all !armhf !armv7" license="GPL-2.0 LGPL-2.0" makedepends="autoconf automake libtool linux-headers" subpackages="$pkgname-dev $pkgname-doc $pkgname-tools" +case "$CARCH" in + s390x) options="!check";; # FAIL: distance test +esac source="$pkgname-$pkgver.tar.gz::https://github.com/numactl/$pkgname/archive/v$pkgver.tar.gz musl.patch" builddir="$srcdir/$pkgname-$pkgver"