From ff21217018784d48c0e662b05e182f26536b61e8 Mon Sep 17 00:00:00 2001 From: deal Date: Fri, 30 Jan 2004 19:46:50 +0000 Subject: [PATCH] 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 --- tests/lac/block_vector.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); -- 2.39.5