From a81f4a35d77c354b5f7cd352a7111b0242b0c912 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Thu, 2 May 2024 09:13:28 -0700 Subject: [PATCH] hijack.sh: fail on stable-v2.2 FW errors too Let's see if we can start paying attention to firmware errors in the stable-v2.2 branch too. Signed-off-by: Marc Herbert --- case-lib/hijack.sh | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/case-lib/hijack.sh b/case-lib/hijack.sh index e7e32a47..bd5e12d2 100644 --- a/case-lib/hijack.sh +++ b/case-lib/hijack.sh @@ -114,17 +114,9 @@ function func_exit_handler() exit_status=1 fi - # We still have some false positives in stable-v2.2 for now, see - # https://github.com/thesofproject/sof-test/pull/1075 - # https://github.com/thesofproject/sof/pull/9036 - # etc. - if is_firmware_file_zephyr; then - - check_error_in_fw_logfile "$logfile" || + check_error_in_fw_logfile "$logfile" || exit_status=1 - fi - else dloge "Log file not found: $logfile" exit_status=1