]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/25_algorithms/stable_partition/moveable.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / stable_partition / moveable.cc
1 // { dg-do run { target c++11 } }
2
3 // Copyright (C) 2009-2021 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
10
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
19
20 // 25.2.12 [lib.alg.partitions] Partitions.
21
22 #include <algorithm>
23 #include <functional>
24 #include <testsuite_hooks.h>
25 #include <testsuite_iterators.h>
26 #include <testsuite_rvalref.h>
27
28 using __gnu_test::test_container;
29 using __gnu_test::random_access_iterator_wrapper;
30 using __gnu_test::rvalstruct;
31
32 typedef test_container<rvalstruct, random_access_iterator_wrapper> Container;
33
34 const int A[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17};
35 const int B[] = {2, 4, 6, 8, 10, 12, 14, 16, 1, 3, 5, 7, 9, 11, 13, 15, 17};
36 const int N = sizeof(A) / sizeof(int);
37
38 // Check that starting with a true predicate works too. (PR52822)
39 const int A2[] = {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17};
40 const int B2[] = {2, 4, 6, 8, 10, 12, 14, 16, 3, 5, 7, 9, 11, 13, 15, 17};
41 const int N2 = sizeof(A2) / sizeof(int);
42
43 struct Pred
44 {
45 bool
46 operator()(const rvalstruct& x) const
47 { return (x.val % 2) == 0; }
48 };
49
50 // 25.2.12 stable_partition(), starting with a false predicate.
51 void
52 test01()
53 {
54 rvalstruct s1[N];
55 std::copy(A, A + N, s1);
56 Container con(s1, s1 + N);
57
58 std::stable_partition(con.begin(), con.end(), Pred());
59 VERIFY( std::equal(s1, s1 + N, B) );
60 }
61
62 // 25.2.12 stable_partition(), starting with a true predicate.
63 void
64 test02()
65 {
66 rvalstruct s1[N2];
67 std::copy(A2, A2 + N2, s1);
68 Container con(s1, s1 + N2);
69
70 std::stable_partition(con.begin(), con.end(), Pred());
71 VERIFY( std::equal(s1, s1 + N2, B2) );
72 }
73
74 int
75 main()
76 {
77 test01();
78 test02();
79 return 0;
80 }