]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string/hash/hash_char8_t.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / hash / hash_char8_t.cc
CommitLineData
8d9254fc 1// Copyright (C) 2019-2020 Free Software Foundation, Inc.
0cb78ef4
JW
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// { dg-options "-std=gnu++2a" }
19// { dg-do run { target c++2a } }
20
21#include <string>
22#include <memory_resource>
23#include <testsuite_hooks.h>
24
25// C++2a N4810 21.3.5 [basic.string.hash]
26// If S is one of these string types, SV is the corresponding string view type,
27// and s is an object of type S, then hash<S>()(s) == hash<SV>()(SV(s)).
28
29template<typename S>
30 bool
31 test(const S& s)
32 {
33 using std::hash;
34 using SV = std::basic_string_view<typename S::value_type>;
35 return hash<S>()(s) == hash<SV>()(SV(s));
36 }
37
38void
39test01()
40{
41 VERIFY( test(std::string("a narrow string")) );
0cb78ef4 42 VERIFY( test(std::u8string(u8"a utf-8 string")) );
53e69273
JW
43#if _GLIBCXX_USE_CXX11_ABI
44 VERIFY( test(std::pmr::string("a narrow string, but with PMR!")) );
0cb78ef4 45 VERIFY( test(std::pmr::u8string(u8"a utf-8 string, but with PMR!")) );
53e69273 46#endif
0cb78ef4
JW
47}
48
49void
50test02()
51{
52 using std::hash;
53 std::string native("a string, a string, my stringdom for a string");
54 std::u8string utf8(u8"a string, a string, my stringdom for a string");
55 VERIFY( hash<std::string>()(native) == hash<std::u8string>()(utf8) );
56}
57
58int
59main()
60{
61 test01();
62 test02();
63}