From: Wolfgang Bangerth Date: Tue, 25 Apr 2006 15:17:14 +0000 (+0000) Subject: New tests that presently fail X-Git-Tag: v8.0.0~11878 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56c7e2b936020149b532cfc2898e3d5a511da4b4;p=dealii.git New tests that presently fail git-svn-id: https://svn.dealii.org/trunk@12886 0785d39b-7218-0410-832d-ea1e28bc413d --- 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; } }