]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/filesystem/operations/remove.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / filesystem / operations / remove.cc
CommitLineData
8d9254fc 1// Copyright (C) 2018-2020 Free Software Foundation, Inc.
994844d3
JW
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
ef0e80d2 18// { dg-options "-DUSE_FILESYSTEM_TS -lstdc++fs" }
994844d3
JW
19// { dg-do run { target c++11 } }
20// { dg-require-filesystem-ts "" }
21
22#include <filesystem>
23#include <testsuite_hooks.h>
24#include <testsuite_fs.h>
25
26namespace fs = std::experimental::filesystem;
27
28void
29test01()
30{
31 std::error_code ec;
32 const std::error_code bad_ec = make_error_code(std::errc::invalid_argument);
33 bool n;
34
35 n = fs::remove("", ec);
36 VERIFY( !ec ); // This seems odd, but is what the standard requires.
37 VERIFY( !n );
38
39 auto p = __gnu_test::nonexistent_path();
40 ec = bad_ec;
41 n = remove(p, ec);
42 VERIFY( !ec );
43 VERIFY( !n );
44
edfe833a
JW
45#if defined(__MINGW32__) || defined(__MINGW64__)
46 // No symlink support
47 return;
48#else
994844d3
JW
49 auto link = __gnu_test::nonexistent_path();
50 create_symlink(p, link); // dangling symlink
51 ec = bad_ec;
52 n = remove(link, ec);
53 VERIFY( !ec );
54 VERIFY( n );
55 VERIFY( !exists(symlink_status(link)) );
56
57 __gnu_test::scoped_file f(p);
58 create_symlink(p, link);
59 ec = bad_ec;
60 n = remove(link, ec);
61 VERIFY( !ec );
62 VERIFY( n );
63 VERIFY( !exists(symlink_status(link)) ); // The symlink is removed, but
64 VERIFY( exists(p) ); // its target is not.
65
66 ec = bad_ec;
67 n = remove(p, ec);
68 VERIFY( !ec );
69 VERIFY( n );
70 VERIFY( !exists(symlink_status(p)) );
edfe833a 71#endif
994844d3
JW
72
73 const auto dir = __gnu_test::nonexistent_path();
74 create_directories(dir/"a/b");
75 ec.clear();
76 n = remove(dir/"a", ec);
77 VERIFY( ec );
78 VERIFY( !n );
79 VERIFY( exists(dir/"a/b") );
80
edfe833a
JW
81#if defined(__MINGW32__) || defined(__MINGW64__)
82 // No permissions support
83#else
994844d3
JW
84 permissions(dir, fs::perms::none, ec);
85 if (!ec)
86 {
87 ec.clear();
88 n = remove(dir/"a/b", ec);
89 VERIFY( ec );
90 VERIFY( !n );
91 permissions(dir, fs::perms::owner_all, ec);
92 }
edfe833a 93#endif
994844d3
JW
94
95 ec = bad_ec;
96 n = remove(dir/"a/b", ec);
97 VERIFY( !ec );
98 VERIFY( n );
99 VERIFY( !exists(dir/"a/b") );
100
101 remove(dir/"a", ec);
102 remove(dir, ec);
103}
104
105int
106main()
107{
108 test01();
109}