Skip to content

Commit

Permalink
Pass binary path to test script
Browse files Browse the repository at this point in the history
  • Loading branch information
jhenin committed Jan 4, 2024
1 parent b1c1186 commit 0e4ab24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gromacs/tests/interface/run_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tests=(${tests[@]/010_MPI_multi-sim})

ALL_SUCCESS=1

../library/run_tests.sh ${tests[@]}
../library/run_tests.sh $1 ${tests[@]}

if [ $? -ne 0 ]
then
Expand All @@ -21,7 +21,7 @@ fi
# Run tests that depend on an MPI build
if source ${TOPDIR}/devel-tools/load-openmpi.sh ; then
if cd 010_MPI_multi-sim ; then
./run.sh
./run.sh $1
if [ $? -ne 0 ]
then
ALL_SUCCESS=0
Expand Down

1 comment on commit 0e4ab24

@giacomofiorin
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Please sign in to comment.