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-pause-resume.sh: lower the default loop count from 5 to 1 #1219

Merged
merged 1 commit into from
Jul 10, 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
5 changes: 4 additions & 1 deletion test-case/multiple-pause-resume.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ OPT_NAME['t']='tplg' OPT_DESC['t']="tplg file, default value is env TPLG: $T
OPT_HAS_ARG['t']=1 OPT_VAL['t']="$TPLG"

OPT_NAME['l']='loop' OPT_DESC['l']='loop count'
OPT_HAS_ARG['l']=1 OPT_VAL['l']=5
OPT_HAS_ARG['l']=1 OPT_VAL['l']=1

OPT_NAME['c']='count' OPT_DESC['c']='combine test pipeline count'
OPT_HAS_ARG['c']=1 OPT_VAL['c']=2
Expand Down Expand Up @@ -102,6 +102,9 @@ do
pipeline_combine_str="${i//,/ }"
pipeline_combine_lst=("${pipeline_combine_lst[@]}" "$pipeline_combine_str")
done
# This can get pretty big and make the test last a very long time and timeout,
# especially in NOCODEC configurations. See #706 discussion. So, log that value.
declare -p pipeline_combine_lst
[[ ${#pipeline_combine_lst[@]} -eq 0 ]] && dlogw "pipeline combine is empty" && exit 2

func_pause_resume_pipeline()
Expand Down
Loading