From: Frantisek Sumsal Date: Mon, 4 Dec 2023 09:51:35 +0000 (+0100) Subject: test: skip TEST-36 on s390x and powerpc X-Git-Tag: v255~11^2~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fc55ef9b69ffce2bf7b062ca4726613e87c4b5d9;p=thirdparty%2Fsystemd.git 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. --- 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 e69de29bb2d..00000000000 diff --git a/test/TEST-36-NUMAPOLICY/test.sh b/test/TEST-36-NUMAPOLICY/test.sh index 5c39b7c6d8b..9548ebb9339 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 "$@"