From: Christian Goeschel Ndjomouo Date: Mon, 13 Apr 2026 00:24:25 +0000 (-0400) Subject: tests: (kill/decode) mark test as known-fail for inconsistent s390x/QEMU instances X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=fb7a478a6a12f959ca14cab6649c849e05bfeee2;p=thirdparty%2Futil-linux.git tests: (kill/decode) mark test as known-fail for inconsistent s390x/QEMU instances Signed-off-by: Christian Goeschel Ndjomouo --- diff --git a/tests/ts/kill/decode b/tests/ts/kill/decode index 12457efbb..21879bdb6 100755 --- a/tests/ts/kill/decode +++ b/tests/ts/kill/decode @@ -23,7 +23,13 @@ if [ "$TS_USE_SYSTEM_COMMANDS" == "yes" ]; then TS_CMD_KILL="$(which kill)" fi -ts_skip_qemu_user +# SIGRTMAX-0 and SIGRTMAX-1 are not usable under QEMU +is_qemu=$(ts_runs_on_qemu) +ARCH="$(uname -m)" + +if [ "$ARCH" == "s390x" ] || [ "$is_qemu" == "1" ]; then + TS_KNOWN_FAIL="yes" +fi ts_check_test_command "$TS_CMD_KILL" ts_check_test_command "$TS_HELPER_SIGSTATE"