From fc55ef9b69ffce2bf7b062ca4726613e87c4b5d9 Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Mon, 4 Dec 2023 10:51:35 +0100 Subject: [PATCH] test: skip TEST-36 on s390x and powerpc As QEMU there doesn't support NUMA nodes. Also, drop the now unneeded deny-list file for Ubuntu CI. --- test/TEST-36-NUMAPOLICY/deny-list-ubuntu-ci-s390x | 0 test/TEST-36-NUMAPOLICY/test.sh | 5 +++++ 2 files changed, 5 insertions(+) delete mode 100644 test/TEST-36-NUMAPOLICY/deny-list-ubuntu-ci-s390x diff --git a/test/TEST-36-NUMAPOLICY/deny-list-ubuntu-ci-s390x b/test/TEST-36-NUMAPOLICY/deny-list-ubuntu-ci-s390x deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/test/TEST-36-NUMAPOLICY/test.sh b/test/TEST-36-NUMAPOLICY/test.sh index 5c39b7c6d8..9548ebb933 100755 --- a/test/TEST-36-NUMAPOLICY/test.sh +++ b/test/TEST-36-NUMAPOLICY/test.sh @@ -14,4 +14,9 @@ else QEMU_OPTIONS+=" -numa node,nodeid=0" fi +if [[ "$(uname -m)" =~ ^(s390x|ppc)$ ]]; then + echo "QEMU doesn't support NUMA nodes on $(uname -m), skipping the test" + exit 0 +fi + do_test "$@" -- 2.25.1