]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy_n/move_iterators/1.cc
re PR testsuite/39696 (gcc.dg/tree-ssa/ssa-ccp-25.c scan-tree-dump doesn't work on...
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 20_util / specialized_algorithms / uninitialized_copy_n / move_iterators / 1.cc
CommitLineData
b0371776
PC
1// { dg-options "-std=gnu++0x" }
2
3// 2008-06-29 Paolo Carlini <paolo.carlini@oracle.com>
4
5// Copyright (C) 2008 Free Software Foundation, Inc.
6//
7// This file is part of the GNU ISO C++ Library. This library is free
8// software; you can redistribute it and/or modify it under the
9// terms of the GNU General Public License as published by the
10// Free Software Foundation; either version 2, or (at your option)
11// any later version.
12
13// This library is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without Pred the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License along
19// with this library; see the file COPYING. If not, write to the Free
20// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21// USA.
22
23#undef _GLIBCXX_CONCEPT_CHECKS
24#define _GLIBCXX_TESTSUITE_ALLOW_RVALREF_ALIASING
25
26#include <algorithm>
27#include <iterator>
28#include <testsuite_hooks.h>
29#include <testsuite_iterators.h>
30#include <testsuite_rvalref.h>
31
32using __gnu_test::test_container;
33using __gnu_test::input_iterator_wrapper;
34using __gnu_test::forward_iterator_wrapper;
35using __gnu_test::rvalstruct;
36using std::uninitialized_copy_n;
37
38typedef test_container<rvalstruct, input_iterator_wrapper> container_in;
39typedef test_container<rvalstruct, forward_iterator_wrapper> container_out;
40
41void test01()
42{
43 bool test __attribute__((unused)) = true;
44
45 int inarray[] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
46 const int size = sizeof(inarray) / sizeof(int);
47
48 rvalstruct in[size], out[size];
49 std::copy(inarray, inarray + size, in);
50
51 container_in incon(in, in + size);
52 container_out outcon(out, out + size);
53
54 uninitialized_copy_n(std::move_iterator<input_iterator_wrapper<rvalstruct> >(incon.begin()),
55 size, outcon.begin());
56 VERIFY( std::equal(out, out + size, inarray) );
57 for (int z = 0; z < size; ++z)
58 VERIFY( out[z].valid );
59 for (int z = 0; z < size; ++z)
60 VERIFY( !in[z].valid );
61}
62
63
64int main()
65{
66 test01();
67 return 0;
68}