From: Wolfgang Bangerth Date: Fri, 7 Oct 2011 15:36:41 +0000 (+0000) Subject: Only produce output from the head node. X-Git-Tag: v8.0.0~3264 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0818f4dfb488ce1f713b814d0e3330e5d1b23b14;p=dealii.git Only produce output from the head node. git-svn-id: https://svn.dealii.org/trunk@24556 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/mpi/p4est_2d_dofhandler_04.cc b/tests/mpi/p4est_2d_dofhandler_04.cc index 6b128e26be..f83005e7d3 100644 --- a/tests/mpi/p4est_2d_dofhandler_04.cc +++ b/tests/mpi/p4est_2d_dofhandler_04.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2009, 2010 by the deal.II authors +// Copyright (C) 2009, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -112,10 +112,11 @@ void test() } } - deallog << "# in locally_active_dofs:" << dof_set.n_elements() << std::endl; if (myid==0) - dof_set.print(deallog); - + { + deallog << "# in locally_active_dofs:" << dof_set.n_elements() << std::endl; + dof_set.print(deallog); + } } }