]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/filesystem/operations/permissions.cc
Use effective-target instead of -std options
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / filesystem / operations / permissions.cc
CommitLineData
94229fb6
JW
1// Copyright (C) 2016 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
52066eae
JW
18// { dg-options "-lstdc++fs" }
19// { dg-do run { target c++11 } }
94229fb6
JW
20// { dg-require-filesystem-ts "" }
21
22// 15.26 Permissions [fs.op.permissions]
23
24#include <experimental/filesystem>
25#include <fstream>
26#include <testsuite_fs.h>
27#include <testsuite_hooks.h>
28
29void
30test01()
31{
32 bool test __attribute__((unused)) = true;
33 using perms = std::experimental::filesystem::perms;
34
35 auto p = __gnu_test::nonexistent_path();
36 std::ofstream{p.native()};
37 VERIFY( exists(p) );
38 permissions(p, perms::owner_all);
39 VERIFY( status(p).permissions() == perms::owner_all );
40 permissions(p, perms::group_read | perms::add_perms);
41 VERIFY( status(p).permissions() == (perms::owner_all | perms::group_read) );
42 permissions(p, perms::group_read | perms::remove_perms);
43 VERIFY( status(p).permissions() == perms::owner_all );
44
45 remove(p);
46}
47
48int
49main()
50{
51 test01();
52}