From: bangerth Date: Mon, 25 Oct 2010 00:27:38 +0000 (+0000) Subject: Add something to the output. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ee930c099c7df3184deec69a3b5bf68cd86dba24;p=dealii-svn.git Add something to the output. git-svn-id: https://svn.dealii.org/trunk@22469 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/distributed_grids/anisotropic.cc b/tests/distributed_grids/anisotropic.cc index b08cd16bd0..d302be359a 100644 --- a/tests/distributed_grids/anisotropic.cc +++ b/tests/distributed_grids/anisotropic.cc @@ -36,6 +36,7 @@ void test(std::ostream& /*out*/) GridGenerator::hyper_cube(tr); tr.begin_active()->set_refine_flag(RefinementCase::cut_x); + bool caught = false; try { tr.execute_coarsening_and_refinement (); @@ -44,7 +45,12 @@ void test(std::ostream& /*out*/) { deallog << "Caught exception:" << std::endl; deallog << e.what() << std::endl; + + caught = true; } + + if (caught != true) + deallog << "FAIL" << std::endl; }