]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/filesystem/path/native/string-char8_t.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / filesystem / path / native / string-char8_t.cc
CommitLineData
a945c346 1// Copyright (C) 2016-2024 Free Software Foundation, Inc.
46ca1dd7
TH
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 "-lstdc++fs -fchar8_t" }
19// { dg-do run { target c++11 } }
20// { dg-require-filesystem-ts "" }
21
22#include <experimental/filesystem>
23#include <string>
24#include <testsuite_hooks.h>
25
26void
27test01()
28{
29 using namespace std::experimental::filesystem;
95767c65
JW
30 using string_type = std::basic_string<path::value_type>;
31 const string_type s{ 'a', 'b', 'c' };
46ca1dd7
TH
32 path p(s);
33
34 VERIFY( p.native() == s );
35 VERIFY( p.c_str() == s );
95767c65 36 VERIFY( static_cast<string_type>(p) == s );
46ca1dd7 37
95767c65 38 string_type s2 = p; // implicit conversion
46ca1dd7
TH
39 VERIFY( s2 == p.native() );
40}
41
42void
43test02()
44{
45 using namespace std::experimental::filesystem;
46 const char* s = "abc";
47 path p(s);
48
49 auto str = p.string<char>();
50 VERIFY( str == u"abc" );
51 VERIFY( str == p.string() );
52
43e2a441 53#ifdef _GLIBCXX_USE_WCHAR_T
46ca1dd7
TH
54 auto strw = p.string<wchar_t>();
55 VERIFY( strw == L"abc" );
56 VERIFY( strw == p.wstring() );
43e2a441 57#endif
46ca1dd7
TH
58
59#ifdef _GLIBCXX_USE_CHAR8_T
60 auto str8 = p.string<char8_t>();
61 VERIFY( str8 == u8"abc" );
62 VERIFY( str8 == p.u8string() );
63#endif
64
65 auto str16 = p.string<char16_t>();
66 VERIFY( str16 == u"abc" );
67 VERIFY( str16 == p.u16string() );
68
69 auto str32 = p.string<char32_t>();
70 VERIFY( str32 == U"abc" );
71 VERIFY( str32 == p.u32string() );
72}
73
74int
75main()
76{
77 test01();
78 test02();
79}