From: Wolfgang Bangerth Date: Fri, 9 Mar 2007 16:44:23 +0000 (+0000) Subject: Limit the number of cycles we have to do. X-Git-Tag: v8.0.0~10443 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35f27a4dbefbe7db25b3569473d5cc7ca6096164;p=dealii.git Limit the number of cycles we have to do. git-svn-id: https://svn.dealii.org/trunk@14563 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/fail/hp-crash_17.cc b/tests/fail/hp-crash_17.cc index 2601089749..dfe6c5d03b 100644 --- a/tests/fail/hp-crash_17.cc +++ b/tests/fail/hp-crash_17.cc @@ -656,7 +656,7 @@ void LaplaceProblem<3>::create_coarse_grid () template void LaplaceProblem::run () { - for (unsigned int cycle=0; cycle<30; ++cycle) + for (unsigned int cycle=0; cycle<4; ++cycle) { deallog << "Cycle " << cycle << ':' << std::endl;