From: bangerth Date: Sun, 19 Sep 2010 17:20:15 +0000 (+0000) Subject: Remove a test that appears no longer useful. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52850a280732a916cb2fad5360365101a34fdd22;p=dealii-svn.git Remove a test that appears no longer useful. git-svn-id: https://svn.dealii.org/trunk@22067 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/fe_collection_01.cc b/tests/bits/fe_collection_01.cc deleted file mode 100644 index a337f242b0..0000000000 --- a/tests/bits/fe_collection_01.cc +++ /dev/null @@ -1,56 +0,0 @@ -//---------------------------- fe_collection_01a.cc --------------------------- -// $Id$ -// Version: $Name$ -// -// Copyright (C) 2004, 2005 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. -// -//---------------------------- fe_collection_01a.cc --------------------------- - -// FECollection would throw an exception when its destructor is called. Check -// that this is fixed - -#include "../tests.h" -#include -#include -#include -#include -#include -#include -#include -#include - -#include -#include - -template -void -check () -{ - { - const FE_Q fe_1(1); - const FE_Q fe_2(2); - - FECollection fc; - fc.add_fe (fe_1); - fc.add_fe (fe_2); - } - deallog << dim << "d: OK" << std::endl; -} - -int main() -{ - std::ofstream logfile("fe_collection_01/output"); - deallog << std::setprecision(4); - deallog.attach(logfile); - deallog.depth_console(0); - deallog.threshold_double(1.e-10); - - check<1> (); - check<2> (); - check<3> (); -}