OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [25_algorithms/] [equal/] [1.cc] - Blame information for rev 742

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 742 jeremybenn
// Copyright (C) 2005, 2009 Free Software Foundation, Inc.
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
6
// Free Software Foundation; either version 3, or (at your option)
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
15
// with this library; see the file COPYING3.  If not see
16
// <http://www.gnu.org/licenses/>.
17
 
18
#include <algorithm>
19
#include <testsuite_hooks.h>
20
#include <testsuite_iterators.h>
21
 
22
using __gnu_test::test_container;
23
using __gnu_test::input_iterator_wrapper;
24
 
25
typedef test_container<int, input_iterator_wrapper> Container;
26
int array1[] = {0, 1};
27
int array2[] = {1, 0};
28
int array3[] = {1, 0};
29
 
30
void test1()
31
{
32
  Container con1(array1, array1);
33
  Container con2(array2, array2);
34
  VERIFY( std::equal(con1.begin(), con1.end(), con2.begin()) );
35
}
36
 
37
void test2()
38
{
39
  Container con1(array1, array1 + 2);
40
  Container con2(array2, array2 + 2);
41
  VERIFY( !std::equal(con2.begin(), con2.end(), con1.begin()) );
42
}
43
 
44
void test3()
45
{
46
  Container con1(array1, array1 + 2);
47
  Container con2(array2, array2 + 2);
48
  VERIFY( !std::equal(con2.begin(), con2.end(), con1.begin()) );
49
}
50
 
51
void test4()
52
{
53
  Container con1(array1, array1 + 2);
54
  Container con2(array2, array2 + 2);
55
  VERIFY( !std::equal(con1.begin(), con1.end(), con2.begin()) );
56
}
57
 
58
void test5()
59
{
60
  Container con3(array3, array3 + 2);
61
  Container con2(array2, array2 + 2);
62
  VERIFY( std::equal(con3.begin(), con3.end(), con2.begin()) );
63
}
64
 
65
int main()
66
{
67
  test1();
68
  test2();
69
  test3();
70
  test4();
71
  test5();
72
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.