From: deal Date: Fri, 30 Jan 2004 19:46:50 +0000 (+0000) Subject: Return zero even if we hit an exception. Otherwise, we'd stop processing of the Makef... X-Git-Tag: v8.0.0~15864 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff21217018784d48c0e662b05e182f26536b61e8;p=dealii.git Return zero even if we hit an exception. Otherwise, we'd stop processing of the Makefile for comparing the output with the stored results. git-svn-id: https://svn.dealii.org/trunk@8376 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/lac/block_vector.cc b/tests/lac/block_vector.cc index 05a765b55f..25fb8e15bd 100644 --- a/tests/lac/block_vector.cc +++ b/tests/lac/block_vector.cc @@ -178,7 +178,7 @@ int main () << "----------------------------------------------------" << std::endl; // abort - return 2; + return 0; } catch (...) { @@ -190,7 +190,7 @@ int main () << "----------------------------------------------------" << std::endl; // abort - return 3; + return 0; }; std::cerr.rdbuf(old_cerr_buf);