mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-24 18:20:22 -06:00
673b049b9a
the number of options were getting unmanagable as a flat list. also add help/usage to the scripts
27 lines
597 B
Bash
Executable File
27 lines
597 B
Bash
Executable File
#!/bin/bash
|
|
# This executes a unit test in parallel.
|
|
|
|
if test $# -eq 0
|
|
then
|
|
echo -e "Usage:\t$0 <options> -- [additional simulator options]"
|
|
echo -e "\tMandatory options:"
|
|
echo -e "\t\t -n <procs> Number of MPI Processes to use"
|
|
echo -e "\t\t -b <path> Path to simulator binary"
|
|
echo -e "\t\t -e <filename> Simulator binary to use"
|
|
exit 1
|
|
fi
|
|
|
|
OPTIND=1
|
|
while getopts "n:b:e:" OPT
|
|
do
|
|
case "${OPT}" in
|
|
b) BDIR=${OPTARG} ;;
|
|
e) EXE_NAME=${OPTARG} ;;
|
|
n) NP=${OPTARG} ;;
|
|
esac
|
|
done
|
|
shift $(($OPTIND-1))
|
|
TEST_ARGS="$@"
|
|
|
|
mpirun -np $NP $BDIR/bin/${EXE_NAME} ${TEST_ARGS}
|