OSDN Git Service

Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 25_algorithms / copy / move_iterators / 1.cc
1 // { dg-options "-std=gnu++0x" }
2
3 // Copyright (C) 2007, 2009 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 Pred 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 #undef _GLIBCXX_CONCEPT_CHECKS
21 #define  _GLIBCXX_TESTSUITE_ALLOW_RVALREF_ALIASING
22
23 #include <algorithm>
24 #include <iterator>
25 #include <testsuite_hooks.h>
26 #include <testsuite_iterators.h>
27 #include <testsuite_rvalref.h>
28
29 using __gnu_test::test_container;
30 using __gnu_test::input_iterator_wrapper;
31 using __gnu_test::output_iterator_wrapper;
32 using __gnu_test::rvalstruct;
33 using std::copy;
34
35 typedef test_container<rvalstruct, input_iterator_wrapper> container_in;
36 typedef test_container<rvalstruct, output_iterator_wrapper> container_out;
37
38 void test01()
39 {
40   bool test __attribute__((unused)) = true;
41
42   int inarray[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
43   const int size = sizeof(inarray) / sizeof(int);
44
45   rvalstruct in[size], out[size];
46   std::copy(inarray, inarray + size, in);
47
48   container_in incon(in, in + size);
49   container_out outcon(out, out + size);
50
51   copy(std::move_iterator<input_iterator_wrapper<rvalstruct> >(incon.begin()),
52        std::move_iterator<input_iterator_wrapper<rvalstruct> >(incon.end()),
53        outcon.begin());
54   VERIFY( std::equal(out, out + size, inarray) );
55   for (int z = 0; z < size; ++z)
56     VERIFY( out[z].valid );
57   for (int z = 0; z < size; ++z)
58     VERIFY( !in[z].valid );
59 }
60
61 int main()
62 {
63   test01();
64   return 0;
65 }