From 01f10a3ca4a8a9251020d57118dfaa49a5f316e8 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 27 May 2013 21:47:30 +0000 Subject: [PATCH] Minor adjustment, but this doesn't fix the problem. git-svn-id: https://svn.dealii.org/trunk@29651 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/mpi/constraint_matrix_trilinos_bug.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/mpi/constraint_matrix_trilinos_bug.cc b/tests/mpi/constraint_matrix_trilinos_bug.cc index 393fbabd5c..6872ef2c69 100644 --- a/tests/mpi/constraint_matrix_trilinos_bug.cc +++ b/tests/mpi/constraint_matrix_trilinos_bug.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2009, 2010, 2012 by the deal.II authors +// Copyright (C) 2009, 2010, 2012, 2013 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -157,11 +157,12 @@ void test() x_test=x; bool throwing=false; + deal_II_exceptions::disable_abort_on_exception(); try { cm.distribute(x_test); } - catch (ExcMessage e) + catch (const ExceptionBase &e) { if (myid==0) deallog << "Exception: " << e.what() << std::endl; -- 2.39.5