]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/filesystem/operations/space.cc
PR libstdc++/78870 support std::filesystem on Windows
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / filesystem / operations / space.cc
CommitLineData
2e023647
JW
1// Copyright (C) 2017-2018 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-options "-DUSE_FILESYSTEM_TS -lstdc++fs" }
19// { dg-do run { target c++11 } }
20// { dg-require-filesystem-ts "" }
21
22// 30.10.14.3 Permissions [fs.op.space]
23
24#include <experimental/filesystem>
25#include <testsuite_fs.h>
26#include <testsuite_hooks.h>
27
28namespace fs = std::experimental::filesystem;
29
30void
31test01()
32{
9534a5e6
JW
33 const fs::path root = __gnu_test::root_path();
34 fs::space_info s = fs::space(root);
2e023647 35 std::error_code ec = make_error_code(std::errc::invalid_argument);
9534a5e6 36 s = fs::space(root, ec);
2e023647
JW
37 VERIFY( !ec );
38
39 s = fs::space(__gnu_test::nonexistent_path(), ec);
40 VERIFY( ec );
41 VERIFY( s.capacity == static_cast<uintmax_t>(-1) );
42 VERIFY( s.free == static_cast<uintmax_t>(-1) );
43 VERIFY( s.available == static_cast<uintmax_t>(-1) );
44}
45
46void
47test02()
48{
49 fs::space_info s = fs::space(".");
50 VERIFY( s.capacity >= s.free );
51}
52
53int
54main()
55{
56 test01();
57 test02();
58}