From: Wolfgang Bangerth Date: Tue, 27 Jan 2004 23:53:25 +0000 (+0000) Subject: Add "OK" marker. X-Git-Tag: v8.0.0~15892 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1c1bea59c5a1d89dd721f3f93ef2c2b48a0ada25;p=dealii.git Add "OK" marker. git-svn-id: https://svn.dealii.org/trunk@8348 0785d39b-7218-0410-832d-ea1e28bc413d --- 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; }