From d9c93cd3f3bf31e2e58f2d1549f05f1a91a5a34c Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sun, 23 Jan 2022 00:15:05 +0100 Subject: [PATCH] Updated status code handling on test.sh (added autotune failure) --- tools/test.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/test.sh b/tools/test.sh index e47c2d734..e1d924f5e 100755 --- a/tools/test.sh +++ b/tools/test.sh @@ -403,6 +403,12 @@ function status() if [ "${RET}" -ne 0 ]; then case ${RET} in + 246) + echo "autotune failure, cmdline : ${CMD}" >> "${OUTD}/logfull.txt" 2>> "${OUTD}/logfull.txt" + + e_rs=$((e_rs + 1)) + ;; + 248) echo "skipped by runtime (mixed backend errors detected), cmdline : ${CMD}" >> "${OUTD}/logfull.txt" 2>> "${OUTD}/logfull.txt"