From: heister Date: Wed, 25 Jul 2012 18:54:58 +0000 (+0000) Subject: fix test X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d242f6a1b050def6bfef5750440bb32a06c6960;p=dealii-svn.git fix test git-svn-id: https://svn.dealii.org/trunk@25734 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/mpi/interpolate_03.cc b/tests/mpi/interpolate_03.cc index e2599cc220..c34b2f6c52 100644 --- a/tests/mpi/interpolate_03.cc +++ b/tests/mpi/interpolate_03.cc @@ -69,9 +69,10 @@ void test() LinearFunction(), interpolated); deallog << "after" << std::endl; - + + double norm = interpolated.l2_norm(); if (Utilities::MPI::this_mpi_process (MPI_COMM_WORLD) == 0) - deallog << "norm = " << interpolated.l2_norm() + deallog << "norm = " << norm << std::endl; }