Add dg-require-filesystem-ts directive to test
[gcc.git] / libstdc++-v3 / testsuite / experimental / filesystem / path / native / string.cc
1 // Copyright (C) 2016 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 "-std=gnu++11 -lstdc++fs" }
19 // { dg-require-filesystem-ts "" }
20
21 #include <experimental/filesystem>
22 #include <string>
23 #include <testsuite_hooks.h>
24
25 void
26 test01()
27 {
28 bool test __attribute__((unused)) = true;
29
30 using namespace std::experimental::filesystem;
31 const std::string s = "abc";
32 path p(s);
33
34 VERIFY( p.native() == s );
35 VERIFY( p.c_str() == s );
36 VERIFY( static_cast<std::string>(p) == s );
37
38 std::string s2 = p; // implicit conversion
39 VERIFY( s2 == p.native() );
40 }
41
42 void
43 test02()
44 {
45 bool test __attribute__((unused)) = true;
46
47 using namespace std::experimental::filesystem;
48 const char* s = "abc";
49 path p(s);
50
51 auto str = p.string<char>();
52 VERIFY( str == u"abc" );
53 VERIFY( str == p.string() );
54
55 auto strw = p.string<wchar_t>();
56 VERIFY( strw == L"abc" );
57 VERIFY( strw == p.wstring() );
58
59 auto str16 = p.string<char16_t>();
60 VERIFY( str16 == u"abc" );
61 VERIFY( str16 == p.u16string() );
62
63 auto str32 = p.string<char32_t>();
64 VERIFY( str32 == U"abc" );
65 VERIFY( str32 == p.u32string() );
66 }
67
68 int
69 main()
70 {
71 test01();
72 test02();
73 }