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

# This test fails on ppc64el see Debian bug: #969715
if [ `dpkg --print-architecture` = 'ppc64el' ] ; then
  echo "Don't fail testsuite on ppc64el, this test always failed there"
  exit 77
fi
if [ `dpkg --print-architecture` = 'arm64' ] ; then
  echo "Don't fail testsuite on arm64, this test always failed there"
  exit 77
fi

# 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
