From: guido Date: Wed, 23 Mar 2005 15:26:02 +0000 (+0000) Subject: additional output X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b6532078d94e5dcfb0aa636c9d121f3f145b0d3;p=dealii-svn.git additional output git-svn-id: https://svn.dealii.org/trunk@10216 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/lac/lapack.cc b/tests/lac/lapack.cc index 0999e9b87f..31d5f1688b 100644 --- a/tests/lac/lapack.cc +++ b/tests/lac/lapack.cc @@ -61,6 +61,8 @@ int main() // results compare with same // operation for FullMatrix. deallog.push("Rect"); + + deallog << "operator= (const FullMatrix&) ok" << std::endl; A.vmult(v1,u); LA.vmult(v2,u); @@ -98,7 +100,10 @@ int main() v2.reinit(4); #else + // If lapack is not available, this + // test will not complain. deallog.push("Rect"); + deallog << "operator= (const FullMatrix&) ok" << std::endl; deallog << "vmult ok" << std::endl; deallog << "vmult_add ok" << std::endl; deallog << "Tvmult ok" << std::endl; diff --git a/tests/results/i686-pc-linux-gnu+gcc3.2/lac/lapack.output b/tests/results/i686-pc-linux-gnu+gcc3.2/lac/lapack.output index 349a02b450..f03da6ec29 100644 --- a/tests/results/i686-pc-linux-gnu+gcc3.2/lac/lapack.output +++ b/tests/results/i686-pc-linux-gnu+gcc3.2/lac/lapack.output @@ -1,4 +1,5 @@ +DEAL:Rect::operator= (const FullMatrix&) ok DEAL:Rect::vmult ok DEAL:Rect::vmult_add ok DEAL:Rect::Tvmult ok