RISC-V: Make FRM as global register [PR118103]
[gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / stable_partition / constrained.cc
blobfc11c6439f9c891d9dc5d6f3985ca9e9c3386205
1 // Copyright (C) 2020-2025 Free Software Foundation, Inc.
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.
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.
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/>.
18 // { dg-do run { target c++20 } }
20 // std::stable_partition is not freestanding.
21 // { dg-require-effective-target hosted }
23 #include <algorithm>
24 #include <testsuite_hooks.h>
25 #include <testsuite_iterators.h>
27 using __gnu_test::test_container;
28 using __gnu_test::test_range;
29 using __gnu_test::bidirectional_iterator_wrapper;
31 namespace ranges = std::ranges;
33 void
34 test01()
37 int x[] = {1,2,3,4,5,6,7,8,9,10};
38 test_container<int, bidirectional_iterator_wrapper> cx(x);
39 auto pred = [] (int a) { return a%2==0; };
40 auto range = ranges::stable_partition(cx, pred);
41 VERIFY( ranges::all_of(cx.begin(), range.begin(), pred) );
42 VERIFY( ranges::none_of(range, pred) );
46 int x[] = {1,2,3,4,5,6,7,8,9,10,11};
47 test_range<int, bidirectional_iterator_wrapper> cx(x);
48 auto pred = [] (int a) { return a%2==0; };
49 auto range = ranges::stable_partition(cx, pred);
50 VERIFY( ranges::all_of(cx.begin(), range.begin(), pred) );
51 VERIFY( ranges::none_of(range, pred) );
55 void
56 test02()
58 for (int k = 1; k <= 10; k++)
60 int x[] = {1,2,3,4,5,6,7,8,9,10};
61 auto pred = [&] (int a) { return a >= k; };
62 auto proj = [] (int a) { return a-1; };
63 auto range = ranges::stable_partition(x, x+10, pred, proj);
64 VERIFY( ranges::all_of(x, range.begin(), pred, proj) );
65 VERIFY( ranges::none_of(range, pred, proj) );
67 int y[] = {0,1,2,3,4,5,6,7,8,9};
68 ranges::rotate(y, y+k);
69 VERIFY( ranges::equal(x, y, {}, proj) );
73 int
74 main()
76 test01();
77 test02();