From: heister Date: Fri, 3 Jan 2014 13:50:27 +0000 (+0000) Subject: simplify test X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e939565ca4ff4da2330799cf5f150f5f1f8c590;p=dealii-svn.git simplify test git-svn-id: https://svn.dealii.org/trunk@32154 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/mpi/mesh_worker_04.cc b/tests/mpi/mesh_worker_04.cc index e19250e939..2b1d4aa5ac 100644 --- a/tests/mpi/mesh_worker_04.cc +++ b/tests/mpi/mesh_worker_04.cc @@ -51,7 +51,7 @@ template void myIntegrator::cell(MeshWorker::DoFInfo &info, CellInfo &) const { - //deallog << "C " << info.cell->id() << std::endl; + deallog << "C " << info.cell->id() << std::endl; } @@ -68,11 +68,11 @@ void myIntegrator::face(MeshWorker::DoFInfo &info1, MeshWorker::DoFInfo &info2, CellInfo &, CellInfo &) const { -// deallog << "F cell1 = " << info1.cell->id() -// << " face = " << info1.face_number -// << " cell2 = " << info2.cell->id() -// << " face2 = " << info2.face_number -// << std::endl; + deallog << "F cell1 = " << info1.cell->id() + << " face = " << info1.face_number + << " cell2 = " << info2.cell->id() + << " face2 = " << info2.face_number + << std::endl; } @@ -175,7 +175,7 @@ test() lctrl.own_cells = false; lctrl.ghost_cells = false; - lctrl.own_faces = MeshWorker::LoopControl::one; + lctrl.own_faces = MeshWorker::LoopControl::never; lctrl.faces_to_ghost = MeshWorker::LoopControl::never; test_loop(dofs, lctrl); } diff --git a/tests/mpi/mesh_worker_04.mpirun=2.output b/tests/mpi/mesh_worker_04.mpirun=2.output index fcad5a031a..c7c1920bdd 100644 --- a/tests/mpi/mesh_worker_04.mpirun=2.output +++ b/tests/mpi/mesh_worker_04.mpirun=2.output @@ -1,13 +1,13 @@ DEAL:0::DoFHandler ndofs=7 -DEAL:0::* own_cells=0 ghost_cells=0 own_faces=1 faces_to_ghost=0 +DEAL:0::* own_cells=0 ghost_cells=0 own_faces=0 faces_to_ghost=0 DEAL:0::B cell = 0_2:00 face = 0 DEAL:0::B cell = 0_2:00 face = 2 DEAL:0::B cell = 0_2:01 face = 2 DEAL:0::B cell = 0_2:02 face = 0 DEAL:1::DoFHandler ndofs=7 -DEAL:1::* own_cells=0 ghost_cells=0 own_faces=1 faces_to_ghost=0 +DEAL:1::* own_cells=0 ghost_cells=0 own_faces=0 faces_to_ghost=0 DEAL:1::B cell = 0_1:1 face = 1 DEAL:1::B cell = 0_1:1 face = 2 DEAL:1::B cell = 0_1:2 face = 0