]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/filesystem/path/native/string-char8_t.cc
Refactor gimple_fold_builtin_memory_op function.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / filesystem / path / native / string-char8_t.cc
CommitLineData
46ca1dd7
TH
1// Copyright (C) 2016-2017 Free Software Foundation, Inc.
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;
30 const std::string s = "abc";
31 path p(s);
32
33 VERIFY( p.native() == s );
34 VERIFY( p.c_str() == s );
35 VERIFY( static_cast<std::string>(p) == s );
36
37 std::string s2 = p; // implicit conversion
38 VERIFY( s2 == p.native() );
39}
40
41void
42test02()
43{
44 using namespace std::experimental::filesystem;
45 const char* s = "abc";
46 path p(s);
47
48 auto str = p.string<char>();
49 VERIFY( str == u"abc" );
50 VERIFY( str == p.string() );
51
52 auto strw = p.string<wchar_t>();
53 VERIFY( strw == L"abc" );
54 VERIFY( strw == p.wstring() );
55
56#ifdef _GLIBCXX_USE_CHAR8_T
57 auto str8 = p.string<char8_t>();
58 VERIFY( str8 == u8"abc" );
59 VERIFY( str8 == p.u8string() );
60#endif
61
62 auto str16 = p.string<char16_t>();
63 VERIFY( str16 == u"abc" );
64 VERIFY( str16 == p.u16string() );
65
66 auto str32 = p.string<char32_t>();
67 VERIFY( str32 == U"abc" );
68 VERIFY( str32 == p.u32string() );
69}
70
71int
72main()
73{
74 test01();
75 test02();
76}