From: kanschat Date: Tue, 18 Jul 2006 18:24:13 +0000 (+0000) Subject: remove bug that avoided showing all exceptions in regression tests X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0fcdec99ba0b17b722106d2a8807d877dc3b4201;p=dealii-svn.git remove bug that avoided showing all exceptions in regression tests git-svn-id: https://svn.dealii.org/trunk@13387 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/exceptions.cc b/deal.II/base/source/exceptions.cc index ff6bd208ef..03d0aafee5 100644 --- a/deal.II/base/source/exceptions.cc +++ b/deal.II/base/source/exceptions.cc @@ -400,6 +400,8 @@ namespace deal_II_exceptions } else if(deal_II_exceptions::abort_on_exception == true) std::abort (); + else + --n_treated_exceptions; }