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
6 changes: 6 additions & 0 deletions Runner/suites/Kernel/Baseport/wpss_remoteproc/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ TESTNAME="wpss_remoteproc"
FW="wpss"
RES_FILE="./$TESTNAME.res"

# Run from the testcase directory so relative outputs (like .res) land next to run.sh
test_path="$(find_test_case_by_name "$TESTNAME")"
cd "$test_path" || {
echo "[ERROR] Could not cd to testcase path: $test_path" >&2
exit 1
}
log_info "-----------------------------------------------------------------------------------------"
log_info "------------------- Starting $TESTNAME Testcase ----------------------------"
log_info "=== Test Initialization ==="
Expand Down
Loading