Skip to content
Snippets Groups Projects
Commit 1800f4f0 authored by Celeste's avatar Celeste
Browse files

main/numactl: disable test/distance on riscv64

This test was previously disabled on x86, and s390x
before that, see 775474dc
parent b74cb5db
No related branches found
No related tags found
1 merge request!64756main/numactl: disable test/distance on riscv64
Pipeline #229107 skipped
......@@ -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() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment