Fix 22_locale/locale/cons/12658_thread-2.cc on hppa.
[official-gcc.git] / libstdc++-v3 / testsuite / experimental / filesystem / operations / create_directory.cc
blobe49c9df44346b19bee3bb30b8bd530335d2d1a25
1 // Copyright (C) 2016-2023 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.
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.
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/>.
18 // { dg-options "-DUSE_FILESYSTEM_TS -lstdc++fs" }
19 // { dg-do run { target c++11 } }
20 // { dg-require-filesystem-ts "" }
22 #include <experimental/filesystem>
23 #include <testsuite_hooks.h>
24 #include <testsuite_fs.h>
26 namespace fs = std::experimental::filesystem;
28 void
29 test01()
31 std::error_code ec;
33 // Test empty path.
34 fs::path p;
35 bool b = create_directory( p, ec );
36 VERIFY( ec );
37 VERIFY( !b );
39 // Test non-existent path
40 p = __gnu_test::nonexistent_path();
41 VERIFY( !exists(p) );
43 b = create_directory(p, ec); // create the directory once
44 VERIFY( !ec );
45 VERIFY( b );
46 VERIFY( exists(p) );
48 // Test existing path (libstdc++/71036).
49 ec = make_error_code(std::errc::invalid_argument);
50 b = create_directory(p, ec);
51 VERIFY( !ec );
52 VERIFY( !b );
53 b = create_directory(p);
54 VERIFY( !b );
56 auto f = p/"file";
57 std::ofstream{f} << "create file";
58 b = create_directory(f, ec);
59 VERIFY( ec == std::errc::file_exists );
60 VERIFY( !b );
61 try
63 create_directory(f);
64 VERIFY( false );
66 catch (const fs::filesystem_error& e)
68 VERIFY( e.code() == std::errc::file_exists );
69 VERIFY( e.path1() == f );
72 #ifndef NO_SYMLINKS
73 // PR libstdc++/101510 create_directory on an existing symlink to a directory
74 fs::create_directory(p/"dir");
75 auto link = p/"link";
76 fs::create_directory_symlink("dir", link);
77 ec = make_error_code(std::errc::invalid_argument);
78 b = fs::create_directory(link, ec);
79 VERIFY( !b );
80 VERIFY( !ec );
81 b = fs::create_directory(link);
82 VERIFY( !b );
83 #endif
85 remove_all(p, ec);
88 int
89 main()
91 test01();