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
4 changes: 2 additions & 2 deletions Runner/suites/Multimedia/CDSP/fastrpc_test/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ log_soc_info
if [ -n "$BIN_DIR" ]; then
:
else
BIN_DIR="/usr/local/bin"
BIN_DIR="/usr/bin"
fi

case "$BIN_DIR" in
Expand Down Expand Up @@ -394,7 +394,7 @@ while [ "$i" -le "$REPEAT" ]; do
log_dsp_remoteproc_status
fi

if grep -q "All tests completed successfully" "$iter_log"; then
if [ -r "$iter_log" ] && grep -F -q -e "All tests completed successfully" -e "All applicable tests PASSED" "$iter_log"; then
PASS_COUNT=$((PASS_COUNT+1))
log_pass "$iter_tag: success"
else
Expand Down
Loading