From 56c7e2b936020149b532cfc2898e3d5a511da4b4 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 25 Apr 2006 15:17:14 +0000 Subject: [PATCH] New tests that presently fail git-svn-id: https://svn.dealii.org/trunk@12886 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/bits/find_cell_4.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/bits/find_cell_4.cc b/tests/bits/find_cell_4.cc index 81fd2a1630..a046aa9ec0 100644 --- a/tests/bits/find_cell_4.cc +++ b/tests/bits/find_cell_4.cc @@ -13,7 +13,8 @@ // take a 3d mesh and check that we can find an arbitrary point's cell -// in it +// in it. this presently fails since the point sits right on the edge +// of the domain, but for different reasons that find_cell_5 #include "../tests.h" #include @@ -60,10 +61,11 @@ int main () coarse_grid.refine_global (3); check (coarse_grid); } - catch (...) + catch (const std::exception &exc) { // we shouldn't get here... deallog << "Caught an error..." << std::endl; + deallog << exc.what() << std::endl; } } -- 2.39.5