]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/filesystem/operations/current_path.cc
Use effective-target instead of -std options
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / filesystem / operations / current_path.cc
CommitLineData
52066eae
JW
1// { dg-options "-lstdc++fs" }
2// { dg-do run { target c++11 } }
0ca7ba9a
JW
3// { dg-require-filesystem-ts "" }
4
818ab71a 5// Copyright (C) 2014-2016 Free Software Foundation, Inc.
0ca7ba9a
JW
6//
7// This file is part of the GNU ISO C++ Library. This library is free
8// software; you can redistribute it and/or modify it under the
9// terms of the GNU General Public License as published by the
10// Free Software Foundation; either version 3, or (at your option)
11// any later version.
12
13// This library is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17
18// You should have received a copy of the GNU General Public License along
19// with this library; see the file COPYING3. If not see
20// <http://www.gnu.org/licenses/>.
21
22// 15.11 Current path [fs.op.current_path]
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{
30362998
JW
33 bool test __attribute__((unused)) = false;
34
0ca7ba9a
JW
35 fs::path dot(".");
36 fs::path cwd = fs::current_path();
37 std::error_code ec;
38 fs::path cwd2 = fs::current_path(ec);
39 VERIFY( cwd == cwd2 );
40}
41
42void
43test02()
44{
30362998
JW
45 bool test __attribute__((unused)) = false;
46
0ca7ba9a
JW
47 auto oldwd = fs::current_path();
48 auto tmpdir = fs::temp_directory_path();
49 current_path(tmpdir);
155bfacb 50 VERIFY( canonical(fs::current_path()) == canonical(tmpdir) );
0ca7ba9a
JW
51 std::error_code ec;
52 current_path(oldwd, ec);
155bfacb
JW
53 VERIFY( canonical(fs::current_path()) == canonical(oldwd) );
54 VERIFY( canonical(fs::current_path(ec)) == canonical(oldwd) );
0ca7ba9a
JW
55}
56
57int
58main()
59{
60 test01();
61 test02();
62}