NWChem/QA/doalltests.mpi
Yuri Victorovich 7b3d60dce7 Fix bash shebangs: make /usr/bin/env find bash in paths
This is needed on FreeBSD and other systems where bash isn't located in /bin/bash.
2021-11-07 14:06:22 -08:00

34 lines
952 B
Bash
Executable file

#!/usr/bin/env bash
#
# $Id$
#
# This is only a sample script to run all the relevant QA test cases.
#
# You will at least need to change NWCHEM_TARGET to match the target for your
# system. If you system is managed using a queueing system, additional settings
# for this will be needed. Please see the local documentation on your set up
# for details.
#
# In addition you may need to specify additional setting for libraries or you
# may need to load special modules. Please, check local documentation for
# guidance.
#
export NWCHEM_TOP=`pwd`/..
export NWCHEM_TARGET=LINUX64
export NWCHEM_TEST=${NWCHEM_TOP}/QA/tests
export NWCHEM_EXECUTABLE=`find "${NWCHEM_TOP}/bin" -perm -u-x -name "nwchem*"`
nproc=4
if [ "$1" != "" ] ; then
nproc=$1
fi
. ./domknwchemenv
./domknwchemrc
status=$?
if [[ $status != 0 ]]; then
echo "ERROR: The script domknwchemrc failed. Exiting."
exit $status
fi
date
./domdtests.mpi $nproc
./doqmtests.mpi $nproc fast
date