Improve atomic store implementation on hppa-linux.
[official-gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / shift_left / 1.cc
blobbd273a31e1ac47be4d31ada84facf5e7695693ab
1 // Copyright (C) 2020-2021 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-options "-std=gnu++2a" }
19 // { dg-do run { target c++2a } }
21 #include <algorithm>
22 #include <testsuite_hooks.h>
23 #include <testsuite_iterators.h>
25 using __gnu_test::test_container;
26 using __gnu_test::forward_iterator_wrapper;
27 using __gnu_test::bidirectional_iterator_wrapper;
28 using __gnu_test::random_access_iterator_wrapper;
30 struct X
32 int a = -1;
33 bool moved_from = false;
35 X() = default;
37 X(int a)
38 : a(a)
39 { }
41 X(const X&) = delete;
42 X& operator=(const X&) = delete;
44 X(X&& other)
46 if (this != &other)
47 *this = std::move(other);
51 operator=(X&& other)
53 a = other.a;
54 other.moved_from = true;
55 moved_from = false;
56 return *this;
60 template<int N, template<typename> typename Wrapper>
61 void
62 test01()
64 for (int n = 0; n < N+5; n++)
66 X x[N];
67 for (int i = 0; i < N; i++)
68 x[i] = X{i};
69 test_container<X, Wrapper> cx(x);
70 auto out = std::shift_left(cx.begin(), cx.end(), n);
71 if (n < N)
73 VERIFY( out.ptr == x+(N-n) );
74 for (int i = 0; i < N-n; i++)
76 VERIFY( x[i].a == n+i );
77 VERIFY( !x[i].moved_from );
79 for (int i = std::max(n, N-n); i < N; i++)
80 VERIFY( x[i].moved_from );
82 else
84 VERIFY( out.ptr == x );
85 for (int i = 0; i < N; i++)
87 VERIFY( x[i].a == i );
88 VERIFY( !x[i].moved_from );
94 int
95 main()
97 test01<23, forward_iterator_wrapper>();
98 test01<23, bidirectional_iterator_wrapper>();
99 test01<23, random_access_iterator_wrapper>();
101 test01<24, forward_iterator_wrapper>();
102 test01<24, bidirectional_iterator_wrapper>();
103 test01<24, random_access_iterator_wrapper>();