From 56c349bdd77738c1b374094367dc6065dfa8f84c Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 24 Sep 2013 13:03:04 +0000 Subject: [PATCH] Allow test to run also in release mode. git-svn-id: https://svn.dealii.org/branches/branch_port_the_testsuite@30910 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/codim_one/extract_boundary_mesh_01.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/codim_one/extract_boundary_mesh_01.cc b/tests/codim_one/extract_boundary_mesh_01.cc index a4c0fbb345..1acaf57cb9 100644 --- a/tests/codim_one/extract_boundary_mesh_01.cc +++ b/tests/codim_one/extract_boundary_mesh_01.cc @@ -119,8 +119,8 @@ int main () surface_to_volume_mapping = GridTools::extract_boundary_mesh (volume_mesh, boundary_mesh); - Assert (test_vertices_orientation(boundary_mesh, surface_to_volume_mapping,2), - ExcInternalError()); + if (!test_vertices_orientation(boundary_mesh, surface_to_volume_mapping,2)) + Assert (false, ExcInternalError()); save_mesh(boundary_mesh); } -- 2.39.5