Skip to content

Commit

Permalink
run-all-tests.sh: add $sof_no_logger
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Herbert <marc.herbert@intel.com>
  • Loading branch information
marc-hb committed May 19, 2021
1 parent c08bcad commit aac9b85
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions test-case/check-kmod-load-unload-after-playback.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ if [ ${OPT_VAL['p']} -eq 1 ];then
func_lib_disable_pulseaudio
fi

"$case_dir"/check-playback.sh -l 1 -t $tplg -d $pb_duration ||
"$case_dir"/check-playback.sh -l 1 -t $tplg -d $pb_duration ${sof_no_logger} ||
die "aplay check failed"

for counter in $(seq 1 $loop_cnt)
Expand Down Expand Up @@ -90,6 +90,6 @@ do
fi
done

"$case_dir"/check-playback.sh -l 1 -t $tplg -d $pb_duration ||
"$case_dir"/check-playback.sh -l 1 -t $tplg -d $pb_duration ${sof_logger} ||
die "aplay check failed"
done
12 changes: 6 additions & 6 deletions test-case/run-all-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,27 +156,27 @@ test_ipc-flood()
}
test_playback-d100l1r1()
{
"$mydir"/check-playback.sh -d "${long_duration}" -l 1 -r 1
"$mydir"/check-playback.sh -d "${long_duration}" -l 1 -r 1 "${sof_no_logger}"
}
test_capture-d100l1r1()
{
"$mydir"/check-capture.sh -d "${long_duration}" -l 1 -r 1
"$mydir"/check-capture.sh -d "${long_duration}" -l 1 -r 1 "${sof_no_logger}"
}
test_playback-d1l100r1()
{
"$mydir"/check-playback.sh -d 1 -l "$large_loop" -r 1
"$mydir"/check-playback.sh -d 1 -l "$large_loop" -r 1 "${sof_no_logger}"
}
test_capture_d1l100r1()
{
"$mydir"/check-capture.sh -d 1 -l "$large_loop" -r 1
"$mydir"/check-capture.sh -d 1 -l "$large_loop" -r 1 "${sof_no_logger}"
}
test_playback_d1l1r50()
{
"$mydir"/check-playback.sh -d 1 -l 1 -r "$large_round"
"$mydir"/check-playback.sh -d 1 -l 1 -r "$large_round" "${sof_no_logger}"
}
test_capture_d1l1r50()
{
"$mydir"/check-capture.sh -d 1 -l 1 -r "$large_round"
"$mydir"/check-capture.sh -d 1 -l 1 -r "$large_round" "${sof_no_logger}"
}
test_speaker()
{
Expand Down

0 comments on commit aac9b85

Please sign in to comment.