From: bangerth Date: Fri, 8 Jul 2011 00:11:45 +0000 (+0000) Subject: Abort the program at the moment since it locks up and we don't have a way to X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ca50797584a9deb0ba0e3f602dbcfa708efc7cc;p=dealii-svn.git Abort the program at the moment since it locks up and we don't have a way to fix it at present. git-svn-id: https://svn.dealii.org/trunk@23933 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/mpi/interpolate_02.cc b/tests/mpi/interpolate_02.cc index c3ef34ebad..b55778b136 100644 --- a/tests/mpi/interpolate_02.cc +++ b/tests/mpi/interpolate_02.cc @@ -12,7 +12,11 @@ //--------------------------------------------------------------------------- -// Like _01 but with PETSc vectors +// Like _01 but with PETSc vectors. this program hangs at the time of writing +// in much the same way solution_transfer_01 does because one processor has no +// cells and all the others decide that PETScWrappers::Vector::compress is a +// no-op when of course the one who does have cells doesn't think so + #include "../tests.h" #include "coarse_grid_common.h" @@ -75,6 +79,8 @@ void test() int main(int argc, char *argv[]) { + abort (); + PetscInitialize(&argc,&argv,0,0);