From: Wolfgang Bangerth Date: Tue, 3 Dec 2019 01:31:24 +0000 (-0700) Subject: Remove a test no longer necessary. X-Git-Tag: v9.2.0-rc1~824^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=74d90f09127f850619308d3cd2449efa2279ecb2;p=dealii.git Remove a test no longer necessary. --- diff --git a/tests/base/stdcxx1x_vs_stdcxx11.cc b/tests/base/stdcxx1x_vs_stdcxx11.cc deleted file mode 100644 index ceda9cbe0b..0000000000 --- a/tests/base/stdcxx1x_vs_stdcxx11.cc +++ /dev/null @@ -1,37 +0,0 @@ -// --------------------------------------------------------------------- -// -// Copyright (C) 2014 - 2018 by the deal.II authors -// -// This file is part of the deal.II library. -// -// The deal.II library is free software; you can use it, redistribute -// it, and/or modify it under the terms of the GNU Lesser General -// Public License as published by the Free Software Foundation; either -// version 2.1 of the License, or (at your option) any later version. -// The full text of the license can be found in the file LICENSE.md at -// the top level directory of deal.II. -// -// --------------------------------------------------------------------- - - -// ensure that we can refer to symbols using the old namespace -// std_cxx1x even if we only include the newer base/std_cxx11/*h -// include files (e.g., if we use the old namespace name but don't -// #include anything at all directly -- in which case we get things -// from indirect #includes made in the library which only include -// base/std_cxx11/*h) - - -#include - -#include "../tests.h" - - -int -main() -{ - initlog(); - - std_cxx1x::shared_ptr p; - deallog << "OK" << std::endl; -} diff --git a/tests/base/stdcxx1x_vs_stdcxx11.output b/tests/base/stdcxx1x_vs_stdcxx11.output deleted file mode 100644 index 0fd8fc12f0..0000000000 --- a/tests/base/stdcxx1x_vs_stdcxx11.output +++ /dev/null @@ -1,2 +0,0 @@ - -DEAL::OK