Skip to content
Closed
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 case-lib/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -270,3 +270,13 @@ is_sof_used()
{
grep -q "sof" /proc/asound/cards;
}

func_error_exit()
{
dloge "$*"
pgrep -a aplay
pgrep -a arecord
pkill -9 aplay
pkill -9 arecord
exit 1
}
35 changes: 15 additions & 20 deletions test-case/multiple-pipeline-capture.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,6 @@ DEV_LST['playback']='/dev/zero'
APP_LST['capture']='arecord'
DEV_LST['capture']='/dev/null'

tmp_count=$max_count

# define for load pipeline
func_run_pipeline_with_type()
{
Expand Down Expand Up @@ -95,21 +93,25 @@ func_run_pipeline_with_type()
done
}

func_error_exit()
check_running_pipeline_count()
{
dloge "$*"
pgrep -a aplay
pgrep -a arecord
pkill -9 aplay
pkill -9 arecord
exit 1
arecord_count=$(pidof arecord | wc -w)
dlogi "$arecord_count capture process is running"
aplay_count=$(pidof aplay | wc -w)
dlogi "$aplay_count playback process is running"
overall_count=$((arecord_count + aplay_count))
[[ $overall_count -eq $max_count ]] ||
func_error_exit "$max_count pipelines started, but only $overall_count pipelines detected"
}

for i in $(seq 1 $loop_cnt)
do
dlogi "===== Testing: (Loop: $i/$loop_cnt) ====="
# clean up dmesg
sudo dmesg -C
# this variable is modified in func_run_pipeline_with_type,
# need to reassign at every iteration
tmp_count=$max_count

# start capture:
func_run_pipeline_with_type "capture"
Expand All @@ -120,11 +122,8 @@ do

# check all refer capture pipeline status
# 1. check process count:
pcount=$(pidof arecord|wc -w)
tmp_count=$((tmp_count + pcount))
pcount=$(pidof aplay|wc -w)
tmp_count=$((tmp_count + pcount))
[[ $tmp_count -ne $max_count ]] && func_error_exit "Target pipeline count: $max_count, current process count: $tmp_count"
dlogi "checking started playback and capture process count"
check_running_pipeline_count

# 2. check arecord process status
dlogi "checking pipeline status"
Expand All @@ -137,12 +136,8 @@ do
sleep ${OPT_VALUE_lst['w']}

# 3. check process count again:
tmp_count=0
pcount=$(pidof arecord|wc -w)
tmp_count=$((tmp_count + pcount))
pcount=$(pidof aplay|wc -w)
tmp_count=$((tmp_count + pcount))
[[ $tmp_count -ne $max_count ]] && func_error_exit "Target pipeline count: $max_count, current process count: $tmp_count"
dlogi "checking existing playback and capture process count"
check_running_pipeline_count

# 4. check arecord process status
dlogi "checking pipeline status again"
Expand Down
35 changes: 15 additions & 20 deletions test-case/multiple-pipeline-playback.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,6 @@ DEV_LST['playback']='/dev/zero'
APP_LST['capture']='arecord'
DEV_LST['capture']='/dev/null'

tmp_count=$max_count

# define for load pipeline
func_run_pipeline_with_type()
{
Expand Down Expand Up @@ -92,21 +90,25 @@ func_run_pipeline_with_type()
done
}

func_error_exit()
check_running_pipeline_count()
{
dloge "$*"
pgrep -a aplay
pgrep -a arecord
pkill -9 aplay
pkill -9 arecord
exit 1
arecord_count=$(pidof arecord | wc -w)
dlogi "$arecord_count capture process is running"
aplay_count=$(pidof aplay | wc -w)
dlogi "$aplay_count playback process is running"
overall_count=$((arecord_count + aplay_count))
[[ $overall_count -eq $max_count ]] ||
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use local for the overall_count

func_error_exit "$max_count pipelines started, but only $overall_count pipelines detected"
}

for i in $(seq 1 $loop_cnt)
do
dlogi "===== Testing: (Loop: $i/$loop_cnt) ====="
# clean up dmesg
sudo dmesg -C
# this variable is modified in func_run_pipeline_with_type,
# need to reassign at every iteration
tmp_count=$max_count
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use local for the tmp_count if you do not want it to be used outside.


# start capture:
func_run_pipeline_with_type "playback"
Expand All @@ -117,11 +119,8 @@ do

# check all refer capture pipeline status
# 1. check process count:
pcount=$(pidof arecord|wc -w)
tmp_count=$(expr $tmp_count + $pcount)
pcount=$(pidof aplay|wc -w)
tmp_count=$(expr $tmp_count + $pcount)
[[ $tmp_count -ne $max_count ]] && func_error_exit "Target pipeline count: $max_count, current process count: $tmp_count"
dlogi "checking started playback and capture process count"
check_running_pipeline_count

# 2. check arecord process status
dlogi "checking pipeline status"
Expand All @@ -134,12 +133,8 @@ do
sleep ${OPT_VALUE_lst['w']}

# 3. check process count again:
tmp_count=0
pcount=$(pidof arecord|wc -w)
tmp_count=$(expr $tmp_count + $pcount)
pcount=$(pidof aplay|wc -w)
tmp_count=$(expr $tmp_count + $pcount)
[[ $tmp_count -ne $max_count ]] && func_error_exit "Target pipeline count: $max_count, current process count: $tmp_count"
dlogi "checking existing playback and capture process count"
check_running_pipeline_count

# 4. check arecord process status
dlogi "checking pipeline again"
Expand Down