From 1800f4f0060aa17fbe10686a0a66161b216c5bf9 Mon Sep 17 00:00:00 2001 From: Celeste <20312-Celeste@users.gitlab.alpinelinux.org> Date: Wed, 24 Apr 2024 03:21:14 +0000 Subject: main/numactl: disable test/distance on riscv64 This test was previously disabled on x86, and s390x before that, see 775474dc51474e8904b6d003b5c9919959eb8425 --- main/numactl/APKBUILD | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/main/numactl/APKBUILD b/main/numactl/APKBUILD index 519dff89e2b..983256f4bf9 100644 --- a/main/numactl/APKBUILD +++ b/main/numactl/APKBUILD @@ -27,7 +27,17 @@ build() { } check() { - make check VERBOSE=1 TESTS='test/distance test/nodemap test/tbitmap' + local tests="test/nodemap test/tbitmap" + + # riscv64 builder: "FAIL test/distance (exit status: 139)" + case "$CARCH" in + riscv64) ;; + *) + tests="test/distance $tests" + ;; + esac + + make check VERBOSE=1 TESTS="$tests" } package() { -- cgit v1.2.3