From: heister Date: Wed, 25 Jul 2012 19:13:16 +0000 (+0000) Subject: make test crash X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ce5808f558bbc960ee4927557eb78748e718be2;p=dealii-svn.git make test crash git-svn-id: https://svn.dealii.org/trunk@25735 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/mpi/interpolate_03.cc b/tests/mpi/interpolate_03.cc index c34b2f6c52..2ea336c9e9 100644 --- a/tests/mpi/interpolate_03.cc +++ b/tests/mpi/interpolate_03.cc @@ -56,7 +56,8 @@ void test() parallel::distributed::Triangulation tr(MPI_COMM_WORLD); GridGenerator::hyper_cube(tr); -// tr.refine_global (2); + +//tr.refine_global (2); const FE_Q fe(2); DoFHandler dofh(tr); @@ -69,6 +70,7 @@ void test() LinearFunction(), interpolated); deallog << "after" << std::endl; + interpolated.compress(); double norm = interpolated.l2_norm(); if (Utilities::MPI::this_mpi_process (MPI_COMM_WORLD) == 0)