]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/tr1/6_containers/hash/operators/size_t.cc
Update copyright years.
[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//
818ab71a 3// Copyright (C) 2007-2016 Free Software Foundation, Inc.
0646d8a3
BK
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
0646d8a3
BK
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
0646d8a3
BK
19
20// 6.3.3 Class template hash
21
22#include <tr1/functional>
23#include <string>
24#include <testsuite_hooks.h>
25
26template<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
395c9e79
PC
36 value_type v = T(); // default initialized is fine, same value all
37 // that matters.
0646d8a3
BK
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}