set -e

echo "Run 64-bit tests (single processor) with python3"
PETSC_DIR=`pkg-config --variable=prefix PETSc64` python3 test/runtests.py --verbose

# note pytest does not support MPI tests

# assume standard test covers petsc4py-64-real, now test complex (non-verbose to simplify output)
echo "Run 64-bit tests (single processor) with python3 for complex build"
PETSC_DIR=`pkg-config --variable=prefix PETSc64 | sed "s/real/complex/"` python3 test/runtests.py
