Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check-ipc-flood.sh: stop asking Zephyr users to use CONFIG_DEBUG #1227

Merged
merged 1 commit into from
Aug 14, 2024
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
15 changes: 10 additions & 5 deletions test-case/check-ipc-flood.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,21 @@ loop_cnt=${OPT_VAL['l']}

start_test

if is_ipc4; then
skip_test 'IPC4 detected: see sof-test#1066'
fi

# See SOF_IPC_INFO_BUILD in linux/sound/soc/sof/ipc3.c:sof_ipc3_validate_fw_version()
sof-kernel-dump.sh | grep sof-audio | grep -q "Firmware debug" ||
skip_test "need debug version firmware"
skip_test "CONFIG_DEBUG firmware needed for SOF_IPC_TEST_IPC_FLOOD cmd"

func_lib_check_sudo

dlogi "Check sof debug fs environment"
if sudo file $ipc_flood_dfs | grep 'No such file'; then
dlogi "Check $ipc_flood_dfs"
sudo test -e $ipc_flood_dfs ||
skip_test "${BASH_SOURCE[0]} need $ipc_flood_dfs to run the test case"
fi
dlogi "Checking ipc flood test!"

dlogi "Running ipc flood test!"

for i in $(seq 1 $loop_cnt)
do
Expand Down
Loading