]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/rotate/moveable2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / rotate / moveable2.cc
CommitLineData
123c59a6 1// { dg-options "-std=gnu++11" }
5708d998 2
f1717362 3// Copyright (C) 2009-2016 Free Software Foundation, Inc.
5708d998 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.10 rotate
21
22// Tests rotate when an moveable class is used
23
24#undef _GLIBCXX_CONCEPT_CHECKS
25
26#include <algorithm>
27#include <testsuite_hooks.h>
28#include <testsuite_iterators.h>
29#include <testsuite_rvalref.h>
30
31using __gnu_test::test_container;
32using __gnu_test::forward_iterator_wrapper;
33using __gnu_test::bidirectional_iterator_wrapper;
34using __gnu_test::random_access_iterator_wrapper;
35using __gnu_test::rvalstruct;
36
37typedef test_container<rvalstruct, forward_iterator_wrapper> Fcontainer;
38typedef test_container<rvalstruct, bidirectional_iterator_wrapper> Bcontainer;
39typedef test_container<rvalstruct, random_access_iterator_wrapper> Rcontainer;
40
41template<typename Con>
42 void
43 test_con(int length, int rotate_pos)
44 {
45 bool test __attribute__((unused)) = true;
46
47 rvalstruct array[length];
48 for(int i = 0; i < length; ++i)
49 array[i] = i;
50 Con con(array, array + length);
51 std::rotate(con.begin(), con.it(rotate_pos), con.end());
52
53 if(length != 0)
54 {
55 for(int i = 0; i < length; ++i)
56 VERIFY( array[i].valid && array[i].val == (i + rotate_pos) % length );
57 }
58 }
59
60void
61test01()
62{
63 for(int i = 0; i < 20; ++i)
64 {
65 for(int j = 0; j <= i; ++j)
66 {
67 test_con<Fcontainer>(i, j);
68 test_con<Bcontainer>(i, j);
69 test_con<Rcontainer>(i, j);
70 }
71 }
72}
73
74int
75main()
76{
77 test01();
78 return 0;
79}