From: Wolfgang Bangerth Date: Thu, 23 Feb 2006 02:58:05 +0000 (+0000) Subject: Even simpler testcase. X-Git-Tag: v8.0.0~12210 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a4d483c44e3140107a7cb244436b1d194fdaccb;p=dealii.git Even simpler testcase. git-svn-id: https://svn.dealii.org/trunk@12472 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/hp/mapping_collection_04.cc b/tests/hp/mapping_collection_04.cc new file mode 100644 index 0000000000..0da06d43ca --- /dev/null +++ b/tests/hp/mapping_collection_04.cc @@ -0,0 +1,54 @@ +//---------------------------- mapping_collection_04.cc --------------------------- +// $Id$ +// Version: $Name$ +// +// Copyright (C) 2005, 2006 by the deal.II authors +// +// This file is subject to QPL and may not be distributed +// without copyright and license information. Please refer +// to the file deal.II/doc/license.html for the text and +// further information on this license. +// +//---------------------------- mapping_collection_04.cc --------------------------- + + +// a test that shows that mapping_collection_0[1-3] really is due to +// the fact that MappingQ has a dysfunctional copy constructor... + + +#include +#include +#include + +#include + + +template +void test () +{ + MappingQ mapping(2); + { + deallog << "Copying..." << std::endl; + MappingQ copy(mapping); + deallog << "Deleting clone..." << std::endl; + } + deallog << "Destroying original..." << std::endl; +} + + + +int main () +{ + std::ofstream logfile("mapping_collection_04/output"); + logfile.precision(2); + + deallog.attach(logfile); + deallog.depth_console(0); + deallog.threshold_double(1.e-10); + + test<1> (); + test<2> (); + test<3> (); + + deallog << "OK" << std::endl; +} diff --git a/tests/hp/mapping_collection_04/cmp/generic b/tests/hp/mapping_collection_04/cmp/generic new file mode 100644 index 0000000000..0fd8fc12f0 --- /dev/null +++ b/tests/hp/mapping_collection_04/cmp/generic @@ -0,0 +1,2 @@ + +DEAL::OK