From: Wolfgang Bangerth Date: Thu, 7 Oct 2004 19:45:37 +0000 (+0000) Subject: New test and add comment to old one. X-Git-Tag: v8.0.0~14774 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9a1fa2e5ef69300fb8046fc5c87ed9d6b91e8575;p=dealii.git New test and add comment to old one. git-svn-id: https://svn.dealii.org/trunk@9696 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/petsc_64.cc b/tests/bits/petsc_64.cc index c5dbdde11e..afedd48c84 100644 --- a/tests/bits/petsc_64.cc +++ b/tests/bits/petsc_64.cc @@ -12,7 +12,9 @@ //---------------------------- petsc_64.cc --------------------------- -// This test should be run on multiple processors +// This test should be run on multiple processors. note that this test also +// started to fail with the upgrade to petsc 2.2.1 which required a fix in +// PETScWrappers::MatrixBase::operator= #include "../tests.h" diff --git a/tests/bits/petsc_65.cc b/tests/bits/petsc_65.cc new file mode 100644 index 0000000000..0ce1253c76 --- /dev/null +++ b/tests/bits/petsc_65.cc @@ -0,0 +1,75 @@ +//---------------------------- petsc_65.cc --------------------------- +// $Id$ +// Version: $Name$ +// +// Copyright (C) 2004 by the deal.II authors +// +// This file is subject to QPL and may not be distributed +// without copyright and license information. Please refer +// to the file deal.II/doc/license.html for the text and +// further information on this license. +// +//---------------------------- petsc_65.cc --------------------------- + + +// This test used to fail after upgrading to petsc 2.2.1 + + +#include "../tests.h" +#include + +#include +#include +#include + + +void test () +{ + PETScWrappers::MPI::Vector v(PETSC_COMM_WORLD, 100, 100); + v(0) = 1; + v = 0; + + deallog << "OK" << std::endl; +} + + + +int main (int argc,char **argv) +{ + std::ofstream logfile("petsc_65.output"); + deallog.attach(logfile); + deallog.depth_console(0); + + try + { + PetscInitialize(&argc,&argv,0,0); + { + test (); + } + PetscFinalize(); + } + catch (std::exception &exc) + { + std::cerr << std::endl << std::endl + << "----------------------------------------------------" + << std::endl; + std::cerr << "Exception on processing: " << std::endl + << exc.what() << std::endl + << "Aborting!" << std::endl + << "----------------------------------------------------" + << std::endl; + + return 1; + } + catch (...) + { + std::cerr << std::endl << std::endl + << "----------------------------------------------------" + << std::endl; + std::cerr << "Unknown exception!" << std::endl + << "Aborting!" << std::endl + << "----------------------------------------------------" + << std::endl; + return 1; + }; +}