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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [tr1/] [6_containers/] [hash/] [operators/] [size_t.cc] - Blame information for rev 742

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 742 jeremybenn
// 2007-08-20  <benjamin@redhat.com>
2
//
3
// Copyright (C) 2007, 2008, 2009 Free Software Foundation, Inc.
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
8
// Free Software Foundation; either version 3, or (at your option)
9
// any later version.
10
//
11
// This library is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
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
17
// with this library; see the file COPYING3.  If not see
18
// <http://www.gnu.org/licenses/>.
19
 
20
// 6.3.3 Class template hash
21
 
22
#include <tr1/functional>
23
#include <string>
24
#include <testsuite_hooks.h>
25
 
26
template<typename T>
27
  void
28
  do_test()
29
  {
30
    bool test __attribute__((unused)) = true;
31
 
32
    typedef T                           value_type;
33
    typedef std::tr1::hash<value_type>  hash_type;
34
    using std::size_t;
35
 
36
    value_type v = T(); // default initialized is fine, same value all
37
                        // that matters.
38
    hash_type h1;
39
    size_t r1 = size_t(h1(v));
40
 
41
    hash_type h2;
42
    size_t r2 = size_t(h2(v));
43
 
44
    VERIFY( r1 == r2 );
45
  }
46
 
47
void test01()
48
{
49
  do_test<bool>();
50
  do_test<char>();
51
  do_test<signed char>();
52
  do_test<unsigned char>();
53
  do_test<short>();
54
  do_test<int>();
55
  do_test<long>();
56
  do_test<unsigned short>();
57
  do_test<unsigned int>();
58
  do_test<unsigned long>();
59
  do_test<int*>();
60
  do_test<std::string>();
61
  do_test<float>();
62
  do_test<double>();
63
  do_test<long double>();
64
 
65
#ifdef _GLIBCXX_USE_WCHAR_T
66
  do_test<wchar_t>();
67
  do_test<std::wstring>();
68
#endif
69
}
70
 
71
int main()
72
{
73
  test01();
74
  return 0;
75
}

powered by: WebSVN 2.1.0

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