From: Timo Heister Date: Fri, 15 Feb 2013 23:03:03 +0000 (+0000) Subject: fix tests (throw in assert change) X-Git-Tag: v8.0.0~1275 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71b478f793830730e512df919a246dff0f3e04ca;p=dealii.git fix tests (throw in assert change) git-svn-id: https://svn.dealii.org/trunk@28416 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/distributed_grids/anisotropic.cc b/tests/distributed_grids/anisotropic.cc index 5b0912c4cf..9f522cee74 100644 --- a/tests/distributed_grids/anisotropic.cc +++ b/tests/distributed_grids/anisotropic.cc @@ -36,7 +36,15 @@ void test(std::ostream& /*out*/) GridGenerator::hyper_cube(tr); tr.begin_active()->set_refine_flag(RefinementCase::cut_x); - tr.execute_coarsening_and_refinement (); + + try + { + tr.execute_coarsening_and_refinement (); + } + catch (...) + { + } + }