Skip to content

Commit cde1ea0

Browse files
committed
check-sof-logger.sh: do not assume FW ABI banner starts with ERROR
... because it's not an error. Required by thesofproject/sof#4334 Signed-off-by: Marc Herbert <marc.herbert@intel.com>
1 parent 855d5f3 commit cde1ea0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test-case/check-sof-logger.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@ main()
144144
print_logs_exit 1 "Log header not found in ${data_file}"
145145

146146
# See initial message SOF PR #3281 / SOF commit 67a0a69
147-
grep -q 'dma-trace.c.*ERROR FW ABI.*tag.*hash' "$tracef" ||
148-
print_logs_exit 1 "Initial ERROR FW ABI message not found in ${data_file}"
147+
grep -q 'dma-trace.c.*FW ABI.*tag.*hash' "$tracef" ||
148+
print_logs_exit 1 "Initial FW ABI banner not found in ${data_file}"
149149
done
150150

151151
# This is a bit redundant with the previous test but does not hurt.

0 commit comments

Comments
 (0)