]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/25_algorithms/partition_copy/1.cc
Use effective-target instead of -std options
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / partition_copy / 1.cc
1 // { dg-do run { target c++11 } }
2
3 // 2008-06-26 Paolo Carlini <paolo.carlini@oracle.com>
4
5 // Copyright (C) 2008-2016 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 3, 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 even 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 COPYING3. If not see
20 // <http://www.gnu.org/licenses/>.
21
22 #include <algorithm>
23 #include <testsuite_hooks.h>
24 #include <testsuite_iterators.h>
25
26 using __gnu_test::test_container;
27 using __gnu_test::input_iterator_wrapper;
28 using __gnu_test::output_iterator_wrapper;
29
30 typedef test_container<int, input_iterator_wrapper> Icontainer;
31 typedef test_container<int, output_iterator_wrapper> Ocontainer;
32 int array[] = {0, 5, 2, 1, 3, 4};
33
34 bool
35 pred(int i)
36 { return i > 2; }
37
38 void
39 test1()
40 {
41 bool test __attribute__((unused)) = true;
42
43 int true_out[1] = { -1 };
44 int false_out[1] = { -1 };
45 Icontainer in_con(array, array);
46 Ocontainer true_out_con(true_out, true_out);
47 Ocontainer false_out_con(false_out, false_out);
48
49 std::pair<output_iterator_wrapper<int>, output_iterator_wrapper<int> > res =
50 std::partition_copy(in_con.begin(), in_con.end(),
51 true_out_con.begin(), false_out_con.begin(), pred);
52
53 VERIFY( res.first.ptr == true_out );
54 VERIFY( res.second.ptr == false_out );
55 }
56
57 void
58 test2()
59 {
60 bool test __attribute__((unused)) = true;
61
62 int true_out[1] = { -1 };
63 int false_out[1] = { -1 };
64 Icontainer in_con(array, array + 2);
65 Ocontainer true_out_con(true_out, true_out + 1);
66 Ocontainer false_out_con(false_out, false_out + 1);
67
68 std::pair<output_iterator_wrapper<int>, output_iterator_wrapper<int> > res =
69 std::partition_copy(in_con.begin(), in_con.end(),
70 true_out_con.begin(), false_out_con.begin(), pred);
71
72 VERIFY( res.first.ptr == true_out + 1 );
73 VERIFY( res.second.ptr == false_out + 1 );
74 VERIFY( true_out[0] == 5 );
75 VERIFY( false_out[0] == 0 );
76 }
77
78 void
79 test3()
80 {
81 bool test __attribute__((unused)) = true;
82
83 int true_out[3] = { -1, -1, -1 };
84 int false_out[3] = { -1, -1, -1 };
85 Icontainer in_con(array, array + 6);
86 Ocontainer true_out_con(true_out, true_out + 3);
87 Ocontainer false_out_con(false_out, false_out + 3);
88
89 std::pair<output_iterator_wrapper<int>, output_iterator_wrapper<int> > res =
90 std::partition_copy(in_con.begin(), in_con.end(),
91 true_out_con.begin(), false_out_con.begin(), pred);
92
93 VERIFY( res.first.ptr == true_out + 3 );
94 VERIFY( res.second.ptr == false_out + 3 );
95 VERIFY( true_out[0] == 5 && true_out[1] == 3 && true_out[2] == 4 );
96 VERIFY( false_out[0] == 0 && false_out[1] == 2 && false_out[2] == 1 );
97 }
98
99 int
100 main()
101 {
102 test1();
103 test2();
104 test3();
105 return 0;
106 }