From: Wolfgang Bangerth Date: Wed, 25 Feb 2004 15:27:11 +0000 (+0000) Subject: Enable gerold_1 X-Git-Tag: v8.0.0~15754 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a66de7610c2db39c4f291afaa3a1653283279ab4;p=dealii.git Enable gerold_1 git-svn-id: https://svn.dealii.org/trunk@8539 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/Makefile b/tests/bits/Makefile index e7a8a09e01..5492e761d5 100644 --- a/tests/bits/Makefile +++ b/tests/bits/Makefile @@ -23,6 +23,7 @@ default: run-tests ############################################################ tests_x = anna_? \ + gerold_1 \ geometry_info_1 \ point_inside_? \ full_matrix_1 \ diff --git a/tests/bits/gerold_1.cc b/tests/bits/gerold_1.cc index adde6b815e..a3366f13b7 100644 --- a/tests/bits/gerold_1.cc +++ b/tests/bits/gerold_1.cc @@ -1,5 +1,5 @@ -/* Copyright (C) 1999, 2000, 2001, 2002, 2003 by the deal.II authors */ +/* Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004 by the deal.II authors */ /* */ /* This file is subject to QPL and may not be distributed */ /* without copyright and license information. Please refer */ @@ -7,9 +7,8 @@ /* further information on this license. */ -// check whether we can read a 3d grid. this test is presenty -// disabled, since we cannot read the file, and this will not be fixed -// in the near future. +// check whether we can read a 3d grid. this test used to fail until late +// 2003, when the necessary infrastructure was created #include "../tests.h" #include @@ -79,7 +78,7 @@ LaplaceProblem::LaplaceProblem () : template void LaplaceProblem::run () { - std::cout << "Solving problem in " << dim << " space dimensions." << std::endl; + deallog << "Solving problem in " << dim << " space dimensions." << std::endl; @@ -90,14 +89,14 @@ void LaplaceProblem::run () std::ifstream input_file("gerold_1.inp"); - cout << "read ucd data file" << endl; + deallog << "read ucd data file" << std::endl; grid_in.read_ucd(input_file); - cout << "ucd data file readin exe" << endl; - + deallog << "ucd data file readin exe" << std::endl; }; - + + int main () { std::ofstream logfile("gerold_1.output");