]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/filesystem/path/generation/normal2.cc
Daily bump.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / filesystem / path / generation / normal2.cc
1 // Copyright (C) 2019-2024 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-do run { target c++17 } }
19 // { dg-require-filesystem-ts "" }
20
21 #undef _GLIBCXX_USE_CXX11_ABI
22 #define _GLIBCXX_USE_CXX11_ABI 0
23 #include <filesystem>
24 #include <testsuite_fs.h>
25
26 using std::filesystem::path;
27
28 void
29 compare_paths(path p, std::string expected)
30 {
31 #if defined(_WIN32) && !defined(__CYGWIN__)
32 for (auto& c : expected)
33 if (c == '/')
34 c = '\\';
35 #endif
36 __gnu_test::compare_paths(p, expected);
37 }
38
39 void
40 test02()
41 {
42 path p = "./a/b/c/../.././b/c";
43 // For the COW string this used to produce incorrect results:
44 auto norm = p.lexically_normal();
45 compare_paths( norm, "a/b/c" );
46 }
47
48 int
49 main()
50 {
51 test02();
52 }