From ee930c099c7df3184deec69a3b5bf68cd86dba24 Mon Sep 17 00:00:00 2001 From: bangerth Date: Mon, 25 Oct 2010 00:27:38 +0000 Subject: [PATCH] Add something to the output. git-svn-id: https://svn.dealii.org/trunk@22469 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/distributed_grids/anisotropic.cc | 6 ++++++ 1 file changed, 6 insertions(+) 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; } -- 2.39.5