Skip to content

Commit

Permalink
multiple-pause-resume.sh: fix two minor quote warnings
Browse files Browse the repository at this point in the history
Now shellcheck clean before thesofproject#1025

Signed-off-by: Marc Herbert <[email protected]>
  • Loading branch information
marc-hb committed Apr 17, 2023
1 parent 02aafc0 commit 04165b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test-case/multiple-pause-resume.sh
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ END
# to prevent infinite loop, 5 second per a repeat is plenty
max_wait_time=$((5 * repeat_count))

for i in $(seq 1 $loop_count)
for i in $(seq 1 "$loop_count")
do
dlogi "===== Loop count( $i / $loop_count ) ====="
# set up checkpoint for each iteration
Expand Down Expand Up @@ -184,7 +184,7 @@ do
dlogi "pipeline: $pcm with ${cmd_idx_lst[$idx]}"
done
dlogi "Check expect exit status"
for pid in ${pid_lst[*]}
for pid in "${pid_lst[@]}"
do
wait "$pid" || {
sof-kernel-log-check.sh "$KERNEL_CHECKPOINT" || true
Expand Down

0 comments on commit 04165b7

Please sign in to comment.