From: bangerth Date: Tue, 24 Sep 2013 13:03:04 +0000 (+0000) Subject: Allow test to run also in release mode. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56c349bdd77738c1b374094367dc6065dfa8f84c;p=dealii-svn.git 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 --- 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); }