main/numactl: disable test/distance on riscv64

This test was previously disabled on x86, and s390x
before that, see 775474dc51
This commit is contained in:
Celeste 2024-04-24 03:21:14 +00:00
parent b74cb5db15
commit 1800f4f006

View file

@ -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() {