From 6e57b7826bb8139f0e7c926d3f59e14e9516a7e7 Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 6 Apr 2010 15:41:10 +0000 Subject: [PATCH] Use Assert instead of assert. git-svn-id: https://svn.dealii.org/trunk@20954 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/lac/block_vector_copy.cc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/tests/lac/block_vector_copy.cc b/tests/lac/block_vector_copy.cc index c4d437b9a7..8d0040e95e 100644 --- a/tests/lac/block_vector_copy.cc +++ b/tests/lac/block_vector_copy.cc @@ -1,8 +1,8 @@ //-------------------------------------------------------------------- // $Id$ -// Version: $Name$ +// Version: $Name$ // -// Copyright (C) 2008, 2009 by the deal.II authors +// Copyright (C) 2008, 2009, 2010 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -38,21 +38,21 @@ void test () unsigned int size = 0; for (unsigned int i = 0; i < b.n_blocks(); ++i) { - assert (b.block(i).size() == partition[i]); + Assert (b.block(i).size() == partition[i], ExcInternalError()); size += b.block(i).size(); } - assert (b.size() == size); + Assert (b.size() == size, ExcInternalError()); for (unsigned int i = 0; i < b.size(); ++i) { b(i) = v[i]; - assert (b(i) == v[i]); + Assert (b(i) == v[i], ExcInternalError()); } dealii::BlockVector c; c = b; - assert (c == b); - assert (c.n_blocks() == b.n_blocks()); + Assert (c == b, ExcInternalError()); + Assert (c.n_blocks() == b.n_blocks(), ExcInternalError()); deallog << "OK" << std::endl; } @@ -77,7 +77,7 @@ int main () streambuf *old_cerr_buf = std::cerr.rdbuf(); #endif std::cerr.rdbuf(logfile.rdbuf()); - + try { test (); @@ -94,7 +94,7 @@ int main () // abort return 0; } - catch (...) + catch (...) { std::cerr << std::endl << std::endl << "----------------------------------------------------" @@ -106,7 +106,7 @@ int main () // abort return 0; }; - + std::cerr.rdbuf(old_cerr_buf); } -- 2.39.5