From: heister Date: Wed, 22 Aug 2012 21:16:17 +0000 (+0000) Subject: add more checks to test X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b25c64f7deac772eb87e8dffac3f0d46b228b4d8;p=dealii-svn.git add more checks to test git-svn-id: https://svn.dealii.org/trunk@26090 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/mpi/trilinos_02.cc b/tests/mpi/trilinos_02.cc index 55b0679bfb..7de100a05b 100644 --- a/tests/mpi/trilinos_02.cc +++ b/tests/mpi/trilinos_02.cc @@ -63,6 +63,12 @@ void test () TrilinosWrappers::MPI::Vector v4=v2; check(v4, true); + v4 = v; + check(v4, true); //this only copies contents! + + v4 = v2; + check(v4, true); + TrilinosWrappers::MPI::Vector v5(v2); check(v5, true);