1 2 3 4 5 6 7 8 9 10 11 12
|
--- a/makefile
+++ b/makefile
@@ -133,7 +133,9 @@
+@cd src/eps/tests >/dev/null; ${RUN_TEST} testtest10
+@if [ ! "${MPI_IS_MPIUNI}" ]; then cd src/eps/tests >/dev/null; ${RUN_TEST} testtest10_mpi; fi
+@if [ "`grep -E '^#define PETSC_USE_FORTRAN_BINDINGS 1' ${PETSC_DIR}/${PETSC_ARCH}/include/petscconf.h 2>/dev/null`" = "#define PETSC_USE_FORTRAN_BINDINGS 1" ] || [ "`grep -E '^#define PETSC_USE_FORTRAN_BINDINGS 1' ${PETSC_DIR}/include/petscconf.h 2>/dev/null`" = "#define PETSC_USE_FORTRAN_BINDINGS 1" ]; then \
+ if [ "x${SKIP_TEST7F}" = "x" ]; then \
cd src/eps/tests >/dev/null; ${RUN_TEST} testtest7f; \
+ fi \
fi
+@if [ "`grep -E '^#define PETSC_HAVE_CUDA 1' ${PETSC_DIR}/${PETSC_ARCH}/include/petscconf.h 2>/dev/null`" = "#define PETSC_HAVE_CUDA 1" ] || [ "`grep -E '^#define PETSC_HAVE_CUDA 1' ${PETSC_DIR}/include/petscconf.h 2>/dev/null`" = "#define PETSC_HAVE_CUDA 1" ]; then \
cd src/eps/tests >/dev/null; ${RUN_TEST} testtest10_cuda; \
|