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
7 changes: 5 additions & 2 deletions test-case/multiple-pipeline.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ OPT_NAME['f']='first'
OPT_DESC['f']='Fill either playback (p) or capture (c) first or any (a) for all pipelines'
OPT_HAS_ARG['f']=1 OPT_VAL['f']='p'

OPT_NAME['w']='wait' OPT_DESC['w']='duration of one (sub)test iteration'
OPT_NAME['w']='wait' OPT_DESC['w']='perpare wait time by sleep'
OPT_HAS_ARG['w']=1 OPT_VAL['w']=5

OPT_NAME['r']='random' OPT_DESC['r']='random load pipeline'
Expand Down Expand Up @@ -163,10 +163,13 @@ do
die "Wrong -f argument $f_arg, see -h"
esac

dlogi "sleep ${OPT_VAL['w']}s for sound device wakeup"
sleep ${OPT_VAL['w']}

dlogi "checking pipeline status"
ps_checks

dlogi "Letting playback/capture run for ${OPT_VAL['w']}s"
dlogi "preparing sleep ${OPT_VAL['w']}"
sleep ${OPT_VAL['w']}

# check processes again
Expand Down