From: Wolfgang Bangerth Date: Tue, 28 Aug 2012 02:11:54 +0000 (+0000) Subject: Limit the threshold up to which stuff is printed. X-Git-Tag: v8.0.0~2233 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6ed9341651815715c8f88b43abcb39dfcfba8ecc;p=dealii.git Limit the threshold up to which stuff is printed. git-svn-id: https://svn.dealii.org/trunk@26134 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/fe_values_view_04.cc b/tests/deal.II/fe_values_view_04.cc index c1b2c01f21..39d637ff89 100644 --- a/tests/deal.II/fe_values_view_04.cc +++ b/tests/deal.II/fe_values_view_04.cc @@ -1,8 +1,8 @@ //---------------------------------------------------------------------- // $Id$ -// Version: $Name$ +// Version: $Name$ // -// Copyright (C) 2007, 2008, 2010 by the deal.II authors +// Copyright (C) 2007, 2008, 2010, 2012 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -52,7 +52,7 @@ void test (const Triangulation& tr, cell = dof.begin_active(); cell != dof.end(); ++cell) { fe_values.reinit (cell); - + for (unsigned int c=0; c& tr, (fe_values[vec_components].gradient(i,q) + transpose(fe_values[vec_components].gradient(i,q)))/2, ExcInternalError()); - + Assert (fe_values[vec_components].hessian (i,q)[d] == fe_values.shape_hessian_component (i,q,c+d), @@ -134,7 +134,7 @@ int main() deallog.attach(logfile); deallog.depth_console (0); - deallog.threshold_double(1.e-12); + deallog.threshold_double(1.e-7); test_hyper_sphere<2>(); test_hyper_sphere<3>();