From: Timo Heister Date: Wed, 25 Jul 2012 19:13:16 +0000 (+0000) Subject: make test crash X-Git-Tag: v8.0.0~2403 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9cd2de46090c0f0828e3bede4470393d5a1fa2ff;p=dealii.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)