1 // Copyright (C) 2018 Free Software Foundation, Inc.
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)
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 "" }
23 #include <testsuite_hooks.h>
24 #include <testsuite_fs.h>
26 namespace fs
= std::experimental::filesystem
;
32 const std::error_code bad_ec
= make_error_code(std::errc::invalid_argument
);
35 n
= fs::remove("", ec
);
36 VERIFY( !ec
); // This seems odd, but is what the standard requires.
39 auto p
= __gnu_test::nonexistent_path();
45 auto link
= __gnu_test::nonexistent_path();
46 create_symlink(p
, link
); // dangling symlink
51 VERIFY( !exists(symlink_status(link
)) );
53 __gnu_test::scoped_file
f(p
);
54 create_symlink(p
, link
);
59 VERIFY( !exists(symlink_status(link
)) ); // The symlink is removed, but
60 VERIFY( exists(p
) ); // its target is not.
66 VERIFY( !exists(symlink_status(p
)) );
68 const auto dir
= __gnu_test::nonexistent_path();
69 create_directories(dir
/"a/b");
71 n
= remove(dir
/"a", ec
);
74 VERIFY( exists(dir
/"a/b") );
76 permissions(dir
, fs::perms::none
, ec
);
80 n
= remove(dir
/"a/b", ec
);
83 permissions(dir
, fs::perms::owner_all
, ec
);
87 n
= remove(dir
/"a/b", ec
);
90 VERIFY( !exists(dir
/"a/b") );