PR libstdc++/86756 add std::filesystem::path to libstdc++.so
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / filesystem / path / nonmember / append.cc
blobd4e1d6fb5f612a12895fbdd416b113cc1d7ab43b
1 // { dg-options "-std=gnu++17" }
2 // { dg-do run { target c++17 } }
4 // Copyright (C) 2018-2019 Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 3, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING3. If not see
19 // <http://www.gnu.org/licenses/>.
21 // C++17 30.10.8.6 path non-member functions [fs.path.nonmember]
23 #include <filesystem>
24 #include <testsuite_fs.h>
26 using std::filesystem::path;
27 using __gnu_test::compare_paths;
29 // operator/(const path&, const path&)
30 // Equivalent to: return path(lhs) /= rhs;
32 void test(const path& lhs, const path& rhs)
34 compare_paths( lhs / rhs, path(lhs) /= rhs );
37 void
38 test01()
40 test( "/foo/bar", "/foo/" );
42 test( "baz", "baz" );
43 test( "baz/", "baz" );
44 test( "baz", "/foo/bar" );
45 test( "baz/", "/foo/bar" );
47 test( "", "" );
48 test( "", "rel" );
50 test( "dir/", "/file" );
51 test( "dir/", "file" );
54 void
55 test02()
57 // C++17 [fs.path.append] p4
58 test( "//host", "foo" );
59 test( "//host/", "foo" );
60 test( "foo", "" );
61 test( "foo", "/bar" );
62 test( "foo", "c:/bar" );
63 test( "foo", "c:" );
64 test( "c:", "" );
65 test( "c:foo", "/bar" );
66 test( "foo", "c:\\bar" );
69 void
70 test03()
72 for (const path& p : __gnu_test::test_paths)
73 for (const path& q : __gnu_test::test_paths)
74 test(p, q);
77 int
78 main()
80 test01();
81 test02();
82 test03();