From abe3e8b157937c5ae5b069bb43798b8df01953a2 Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 27 Jan 2004 23:53:25 +0000 Subject: [PATCH] Add "OK" marker. git-svn-id: https://svn.dealii.org/trunk@8348 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/bits/mapping_q4_3d.cc | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/tests/bits/mapping_q4_3d.cc b/tests/bits/mapping_q4_3d.cc index 2a0b39a856..89e2f8c294 100644 --- a/tests/bits/mapping_q4_3d.cc +++ b/tests/bits/mapping_q4_3d.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2003 by the deal.II authors +// Copyright (C) 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 @@ -12,8 +12,9 @@ //---------------------------- mapping_q4_3d.cc --------------------------- -// this test used to fail somewhere in the 3d parts of MappingQ for -// fourth order mappings +// this test used to fail somewhere in the 3d parts of MappingQ for fourth +// order mappings. it later turned out that the weird error was simply that +// something wasn't implemented, which is now the case #include #include @@ -46,8 +47,13 @@ int main () MappingQ<3> mapping(4); QGauss3<2> q_face; FEFaceValues<3> fe_face_values (mapping, fe, q_face, - update_normal_vectors | update_JxW_values); + update_normal_vectors | + update_JxW_values); fe_face_values.reinit (dof_handler.begin_active(), 0); + + // if we got here, we got past the previous + // abort + deallog << "OK" << std::endl; } -- 2.39.5