]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/tr1/6_containers/hash/operators/size_t.cc
re PR target/34995 (MIPS16 ICE in gcc.c-torture/compile/pr34856.c)
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / tr1 / 6_containers / hash / operators / size_t.cc
CommitLineData
0646d8a3
BK
1// 2007-08-20 <benjamin@redhat.com>
2//
3// Copyright (C) 2007 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 2, 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 COPYING. If not, write to the Free
18// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19// USA.
20
21// 6.3.3 Class template hash
22
23#include <tr1/functional>
24#include <string>
25#include <testsuite_hooks.h>
26
27template<typename T>
28 void
29 do_test()
30 {
31 bool test __attribute__((unused)) = true;
32
33 typedef T value_type;
34 typedef std::tr1::hash<value_type> hash_type;
35 using std::size_t;
36
37 value_type v; // default initialized is fine, same value all 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
47void test01()
48{
ed1345e8
KZ
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>();
0646d8a3
BK
63 do_test<long double>();
64
65#ifdef _GLIBCXX_USE_WCHAR_T
ed1345e8
KZ
66 do_test<wchar_t>();
67 do_test<std::wstring>();
0646d8a3
BK
68#endif
69}
70
71int main()
72{
73 test01();
74 return 0;
75}