]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/fill_n/constrained.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / fill_n / constrained.cc
CommitLineData
7adcbafe 1// Copyright (C) 2020-2022 Free Software Foundation, Inc.
bc464641
PP
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 3, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
18// { dg-options "-std=gnu++2a" }
19// { dg-do run { target c++2a } }
20
21#include <algorithm>
22#include <testsuite_hooks.h>
23#include <testsuite_iterators.h>
24#include <list>
25
26using __gnu_test::test_container;
27using __gnu_test::test_range;
28using __gnu_test::input_iterator_wrapper;
29using __gnu_test::output_iterator_wrapper;
30using __gnu_test::forward_iterator_wrapper;
31
32namespace ranges = std::ranges;
33
34struct X
35{
36 int i;
37};
38
39void
40test01()
41{
42 const int c[6] = { 17, 17, 17, 4, 5, 6 };
43 {
44 X x[6] = { {1}, {2}, {3}, {4}, {5}, {6} };
45 VERIFY( ranges::fill_n(x, 3, X{17}) == x+3 );
46 VERIFY( ranges::equal(x, c, {}, &X::i) );
47 }
48
49 {
50 char x[6];
51 VERIFY( ranges::fill_n(x, 3, 17) == x+3 );
52 VERIFY( ranges::equal(x, x+3, c, c+3) );
53 }
54
55 {
56 X x[6] = { 1, 2, 3, 4, 5, 6 };
57 test_container<X, forward_iterator_wrapper> cx(x);
58 VERIFY( ranges::fill_n(cx.begin(), 3, X{17})->i == 4 );
59 VERIFY( ranges::equal(cx, c, {}, &X::i) );
60 }
61
62 {
63 int x[6] = { 1, 2, 3, 4, 5, 6 };;
64 test_range<int, output_iterator_wrapper> rx(x);
65 ranges::fill_n(ranges::begin(rx), 3, 17);
66 VERIFY( ranges::equal(x, c) );
67 }
68
69 {
70 std::list<int> list({1, 2, 3, 4, 5, 6});
71 ranges::fill_n(list.begin(), 3, 17);
72 VERIFY( ranges::equal(list, c) );
73 }
74}
75
82c3657d 76template<typename T>
bc464641
PP
77constexpr bool
78test02()
79{
80 bool ok = true;
82c3657d 81 T x[6] = { 1, 2, 3, 4, 5, 6 };
bc464641
PP
82 const int y[6] = { 1, 2, 3, 4, 5, 6 };
83 const int z[6] = { 17, 17, 17, 4, 5, 6 };
84
85 ranges::fill_n(x, 0, 17);
86 ranges::fill_n(x, -1, 17);
87 ok &= ranges::equal(x, y);
88
89 ranges::fill_n(x, 3, 17);
90 ok &= ranges::equal(x, z);
91 return ok;
92}
93
94int
95main()
96{
97 test01();
82c3657d
JW
98 static_assert(test02<int>());
99 static_assert(test02<unsigned char>()); // PR libstdc++/101608
bc464641 100}