]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/equal/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / equal / 1.cc
CommitLineData
99dee823 1// Copyright (C) 2005-2021 Free Software Foundation, Inc.
0e994557
PC
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
748086b7 6// Free Software Foundation; either version 3, or (at your option)
0e994557
PC
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
0e994557
PC
17
18#include <algorithm>
19#include <testsuite_hooks.h>
20#include <testsuite_iterators.h>
21
22using __gnu_test::test_container;
23using __gnu_test::input_iterator_wrapper;
24
25typedef test_container<int, input_iterator_wrapper> Container;
26int array1[] = {0, 1};
27int array2[] = {1, 0};
28int array3[] = {1, 0};
29
f7fbb003
JW
30bool __attribute__((unused)) test = false;
31
0e994557
PC
32void test1()
33{
34 Container con1(array1, array1);
35 Container con2(array2, array2);
36 VERIFY( std::equal(con1.begin(), con1.end(), con2.begin()) );
37}
38
39void test2()
40{
41 Container con1(array1, array1 + 2);
42 Container con2(array2, array2 + 2);
43 VERIFY( !std::equal(con2.begin(), con2.end(), con1.begin()) );
44}
45
46void test3()
0e994557
PC
47{
48 Container con1(array1, array1 + 2);
49 Container con2(array2, array2 + 2);
50 VERIFY( !std::equal(con1.begin(), con1.end(), con2.begin()) );
51}
52
f7fbb003 53void test4()
0e994557
PC
54{
55 Container con3(array3, array3 + 2);
56 Container con2(array2, array2 + 2);
57 VERIFY( std::equal(con3.begin(), con3.end(), con2.begin()) );
58}
59
60int main()
61{
62 test1();
63 test2();
64 test3();
65 test4();
0e994557 66}