Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions test-case/check-sof-logger.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ run_loggers()
# the same time, so $data_file will hopefully not be long.
local collect_secs=2

if is_zephyr; then
if is_firmware_file_zephyr; then
# Collect logs from Zephyr logging backends

if is_ipc4 ; then
Expand Down Expand Up @@ -136,7 +136,7 @@ run_loggers()
}
fi

if is_zephyr; then
if is_firmware_file_zephyr; then
# Zephyr logging backends

if is_ipc4 ; then
Expand Down Expand Up @@ -281,12 +281,12 @@ main()
test -e "$tracef" || die "$tracef" not found

local tool_banner boot_banner
if is_ipc4 && is_zephyr && [ "$f" = 'etrace' ]; then
if is_ipc4 && is_firmware_file_zephyr && [ "$f" = 'etrace' ]; then
# mtrace
# No specific tool banner, just check some logs are visible.
tool_banner=' .*<.*>'
boot_banner='FW ABI.*tag.*zephyr'
elif is_zephyr && [ "$f" = 'etrace' ]; then
elif is_firmware_file_zephyr && [ "$f" = 'etrace' ]; then
# cavstool
tool_banner=':cavs-fw:'
boot_banner='FW ABI.*tag.*zephyr'
Expand Down