]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/copy_backward/move_iterators/1.cc
Use effective-target instead of -std options
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / copy_backward / move_iterators / 1.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
f0112db9 2
818ab71a 3// Copyright (C) 2007-2016 Free Software Foundation, Inc.
f0112db9
PC
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
f0112db9
PC
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
2328b1de 12// but WITHOUT ANY WARRANTY; without even the implied warranty of
f0112db9
PC
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
f0112db9
PC
19
20#undef _GLIBCXX_CONCEPT_CHECKS
f0112db9
PC
21
22#include <algorithm>
23#include <iterator>
24#include <testsuite_hooks.h>
25#include <testsuite_iterators.h>
26#include <testsuite_rvalref.h>
27
28using __gnu_test::test_container;
29using __gnu_test::bidirectional_iterator_wrapper;
30using __gnu_test::rvalstruct;
31using std::copy_backward;
32
33typedef test_container<rvalstruct,
34 bidirectional_iterator_wrapper> container_in;
35typedef test_container<rvalstruct,
36 bidirectional_iterator_wrapper> container_out;
37
38void 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 std::fill(out, out + size, 0);
48
49 container_in incon(in, in + size);
50 container_out outcon(out, out + size);
51
52 copy_backward(std::move_iterator<bidirectional_iterator_wrapper<rvalstruct> >(incon.begin()),
53 std::move_iterator<bidirectional_iterator_wrapper<rvalstruct> >(incon.end()),
54 outcon.end());
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 );
60}
61
62int main()
63{
64 test01();
65 return 0;
66}