From: Timo Heister Date: Thu, 29 Oct 2015 14:43:40 +0000 (-0400) Subject: add missing changes to fix bdm tests X-Git-Tag: v8.4.0-rc2~268^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1812%2Fhead;p=dealii.git add missing changes to fix bdm tests the PR #1778 written to fix tests/fe/bdm_[89], also see #1770, did not include the necessary changes to the .cc files. --- diff --git a/tests/fe/bdm_8.cc b/tests/fe/bdm_8.cc index b0b6e34f9f..de8f98129d 100644 --- a/tests/fe/bdm_8.cc +++ b/tests/fe/bdm_8.cc @@ -108,7 +108,8 @@ main() for (unsigned int i=1; i<4; ++i) { test<2>(i); - test<3>(i); + if (i<3) + test<3>(i); } return 0; diff --git a/tests/fe/bdm_9.cc b/tests/fe/bdm_9.cc index fde01e73c6..8a606c6f6a 100644 --- a/tests/fe/bdm_9.cc +++ b/tests/fe/bdm_9.cc @@ -70,7 +70,7 @@ test (const unsigned int degree) mass_matrix.print_formatted (logfile, 3, false, 0, " ", 1); - SolverControl solver_control (dofs_per_cell, + SolverControl solver_control (3*dofs_per_cell, 1e-8); PrimitiveVectorMemory<> vector_memory; SolverCG<> cg (solver_control, vector_memory); @@ -99,7 +99,8 @@ main() for (unsigned int i=1; i<4; ++i) { test<2>(i); - test<3>(i); + if (i<3) + test<3>(i); } return 0;