From: Wolfgang Bangerth Date: Thu, 28 Mar 2019 15:07:21 +0000 (-0600) Subject: Add a test. X-Git-Tag: v9.1.0-rc1~233^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7871%2Fhead;p=dealii.git Add a test. --- diff --git a/tests/vector/vector_59.cc b/tests/vector/vector_59.cc new file mode 100644 index 0000000000..0f6042e463 --- /dev/null +++ b/tests/vector/vector_59.cc @@ -0,0 +1,41 @@ +// --------------------------------------------------------------------- +// +// Copyright (C) 2004 - 2017 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. +// +// --------------------------------------------------------------------- + + + +// check Vector initialization with std::initializer_list objects + +#include + +#include "../tests.h" + + + +int +main() +{ + initlog(); + + Vector vd({1.0, 2.0, 3.0}); + for (const auto &x : vd) + deallog << x << ' '; + deallog << std::endl; + + + Vector vi({1, 2, 3}); + for (const auto &x : vi) + deallog << x << ' '; + deallog << std::endl; +} diff --git a/tests/vector/vector_59.output b/tests/vector/vector_59.output new file mode 100644 index 0000000000..e6f09856b2 --- /dev/null +++ b/tests/vector/vector_59.output @@ -0,0 +1,3 @@ + +DEAL::1.00000 2.00000 3.00000 +DEAL::1.00000 2.00000 3.00000