Merge -r 127928:132243 from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 20_util / specialized_algorithms / uninitialized_copy / move_iterators / 1.cc
blob11e07a76aeab9722b3d4a27e5075b3e17ae23836
1 // { dg-options "-std=gnu++0x" }
3 // Copyright (C) 2007 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 2, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
21 #undef _GLIBCXX_CONCEPT_CHECKS
22 #define _GLIBCXX_TESTSUITE_ALLOW_RVALREF_ALIASING
24 #include <algorithm>
25 #include <iterator>
26 #include <testsuite_hooks.h>
27 #include <testsuite_iterators.h>
28 #include <testsuite_rvalref.h>
30 using __gnu_test::test_container;
31 using __gnu_test::input_iterator_wrapper;
32 using __gnu_test::forward_iterator_wrapper;
33 using __gnu_test::rvalstruct;
34 using std::uninitialized_copy;
36 typedef test_container<rvalstruct, input_iterator_wrapper> container_in;
37 typedef test_container<rvalstruct, forward_iterator_wrapper> container_out;
39 void test01()
41 bool test __attribute__((unused)) = true;
43 int inarray[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
44 const int size = sizeof(inarray) / sizeof(int);
46 rvalstruct in[size], out[size];
47 std::copy(inarray, inarray + size, in);
49 container_in incon(in, in + size);
50 container_out outcon(out, out + size);
52 uninitialized_copy(std::move_iterator<input_iterator_wrapper<rvalstruct> >(incon.begin()),
53 std::move_iterator<input_iterator_wrapper<rvalstruct> >(incon.end()),
54 outcon.begin());
55 VERIFY( std::equal(out, out + size, inarray) );
56 for (int z = 0; z < size; ++z)
57 VERIFY( out[z].valid );
58 for (int z = 0; z < size; ++z)
59 VERIFY( !in[z].valid );
63 int main()
65 test01();
66 return 0;