| ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd) |
| echo "cleaning up processes and tmp files" |
| echo "vsim pid is:${vsim_pid} pgid:${vsim_pgid}" |
| if ps -p "${vsim_pid}" > /dev/null |
| echo "vsim pid exists, killing it" |
| make -C "${ROOT}"/tb/dm vsim-run &> "${vsim_out}"& |
| # record vsim pid/pgid to kill it if it survives this script |
| vsim_pgid=$(ps -o pgid= ${vsim_pid} | grep -o [0-9]*) |
| # block until we get "Listening on port" so that we are safe to connect openocd |
| coproc grep -m 1 "Listening on port" |
| tail -f -n0 "${vsim_out}" --pid "$COPROC_PID" >&"${COPROC[1]}" |
| "${RISCV}"/bin/openocd -f "${ROOT}"/tb/dm/dm_compliance_test.cfg |& tee "${openocd_out}" |
| if grep -q "ALL TESTS PASSED" "${openocd_out}"; then |