From: bangerth Date: Mon, 27 May 2013 21:47:30 +0000 (+0000) Subject: Minor adjustment, but this doesn't fix the problem. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8d5717252c450c16f5634da1c4ae0aae1445da4f;p=dealii-svn.git Minor adjustment, but this doesn't fix the problem. git-svn-id: https://svn.dealii.org/trunk@29651 0785d39b-7218-0410-832d-ea1e28bc413d --- 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;