mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-21 06:25:21 -04:00
17 lines
347 B
Bash
Executable file
17 lines
347 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#
|
|
# $Id$
|
|
#
|
|
#--- small tests
|
|
if [ -z "$1" ]; then
|
|
let np=1
|
|
else
|
|
let np=$1
|
|
fi
|
|
./runtests.mpi.unix procs $np qmmm_grad0
|
|
./runtests.mpi.unix procs $np lys_qmmm
|
|
./runtests.mpi.unix procs $np ethane_qmmm
|
|
./runtests.mpi.unix procs $np qmmm_opt0
|
|
echo "qmmm frequency test may fail"
|
|
./runtests.mpi.unix procs $np qmmm_freq
|
|
|