Skip to content

Commit 7f10959

Browse files
committed
use abs path for regression parse file
1 parent 3ba70fd commit 7f10959

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

ODIN_II/verify_odin.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -546,13 +546,23 @@ function populate_arg_from_file() {
546546
_simulation_params="${_local_simulation_params} ${_simulation_params}"
547547
fi
548548

549+
if [ "_${_local_synthesis_parse_file}" != "_" ] && [ ! -f "${_local_synthesis_parse_file}" ]
550+
then
551+
_local_synthesis_parse_file="${THIS_DIR}/${_local_synthesis_parse_file}"
552+
fi
553+
549554
if [ "_${_local_synthesis_parse_file}" != "_" ] && [ ! -f "${_local_synthesis_parse_file}" ]
550555
then
551556
echo "file ${_local_synthesis_parse_file} not found, skipping"
552557
else
553558
_synthesis_parse_file="${_local_synthesis_parse_file}"
554559
fi
555560

561+
if [ "_${_local_simulation_parse_file}" != "_" ] && [ ! -f "${_local_simulation_parse_file}" ]
562+
then
563+
_local_simulation_parse_file="${THIS_DIR}/${_local_simulation_parse_file}"
564+
fi
565+
556566
if [ "_${_local_simulation_parse_file}" != "_" ] && [ ! -f "${_local_simulation_parse_file}" ]
557567
then
558568
echo "file ${_local_simulation_parse_file} not found, skipping"

0 commit comments

Comments
 (0)