From: bangerth Date: Sun, 24 Oct 2010 03:47:24 +0000 (+0000) Subject: Disable distributed_grids if not using p4est. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c1cb72ac69e6c9d1b89acb112e6df632854db47b;p=dealii-svn.git Disable distributed_grids if not using p4est. git-svn-id: https://svn.dealii.org/trunk@22443 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/Makefile b/tests/Makefile index 2da98dc54d..1a2482c9bf 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -14,11 +14,11 @@ nofail-dirs = a-framework \ multigrid \ bits \ hp \ - distributed_grids \ - mpi \ aniso \ codim_one \ serialization \ + mpi \ + $(shell if test "$(USE_CONTRIB_P4EST)" = yes ; then echo distributed_grids ; fi) \ $(shell if test "$(USE_CONTRIB_PETSC)" = yes ; then echo petsc ; fi) \ $(shell if test "$(USE_CONTRIB_TRILINOS)" = yes ; then echo trilinos ; fi) \ $(shell if test "$(USE_CONTRIB_UMFPACK)" = yes ; then echo umfpack ; fi) \