From 2fd88f7c2de8016b8a729407ada6667938e17bf2 Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Tue, 11 Jun 2013 17:05:36 +0000 Subject: [PATCH] fix test git-svn-id: https://svn.dealii.org/branches/branch_unify_linear_algebra@29809 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/petsc/sparse_matrix_02.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/petsc/sparse_matrix_02.cc b/tests/petsc/sparse_matrix_02.cc index da37b6252f..6794fc9dee 100644 --- a/tests/petsc/sparse_matrix_02.cc +++ b/tests/petsc/sparse_matrix_02.cc @@ -13,6 +13,7 @@ // document that SparseMatrix::operator= is broken +// now forbidden #include "../tests.h" #include @@ -40,14 +41,15 @@ void test () Mat mm=m; Mat m2m=m2; - deallog << &mm << " " << &m2m << std::endl; + //deallog << mm << " " << m2m << std::endl; - m2 = m; + //forbidden: m2 = m; { + //forbidden: PETScWrappers::SparseMatrix m3=m2; Mat mm=m; Mat m2m=m2; - deallog << &mm << " " << &m2m << std::endl; + //deallog << mm << " " << m2m << std::endl; } -- 2.39.5