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

multiple pipelines: skip XTOS + NOCODEC configurations #1229

Merged
merged 2 commits into from
Aug 15, 2024
Merged
Show file tree
Hide file tree
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
10 changes: 10 additions & 0 deletions test-case/multiple-pause-resume.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,16 @@ func_pipeline_export "$tplg" "type:any & ~pcm:Amplifier Reference"

logger_disabled || func_lib_start_log_collect

# We know it's failing and it's not going to get fixed: stop polluting
# test results. Note https://github.com/thesofproject/sof/issues/9135
# is NOT an problem with pause/resume; it is a problem with multiple
# pipelines. This code is duplicated in multiple-pipeline.sh
case "$MODEL" in
*NOCODEC*)
is_firmware_file_zephyr ||
skip_test 'Known pipeline_comp_reset() bug sof#9135';;
esac

declare -a pipeline_idx_lst
declare -a cmd_idx_lst
declare -a file_idx_lst
Expand Down
7 changes: 7 additions & 0 deletions test-case/multiple-pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,13 @@ ps_checks()
main()
{
local platf; platf=$("${TESTDIR}"/tools/sof-dump-status.py --platform)

case "$MODEL" in
*NOCODEC*)
is_firmware_file_zephyr ||
skip_test 'Known pipeline_comp_reset() bug sof#9135';;
esac

if [ "$platf" = bdw ] && [ "$f_arg" != 'p' ] && ! is_zephyr_ldc; then
skip_test \
"multi-capture disabled on BDW https://github.com/thesofproject/sof/issues/3170"
Expand Down
Loading