From fbaeb3d0fba0f8ffec2bd18cc1b801e3c32462bf Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 9 Mar 2007 16:44:23 +0000 Subject: [PATCH] Limit the number of cycles we have to do. git-svn-id: https://svn.dealii.org/trunk@14563 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/fail/hp-crash_17.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5