]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/experimental/filesystem/path/query/is_absolute.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / experimental / filesystem / path / query / is_absolute.cc
CommitLineData
87e4fbdd
JW
1// { dg-options "-DUSE_FILESYSTEM_TS -lstdc++fs" }
2// { dg-do run { target c++11 } }
c3b61fda
JW
3// { dg-require-filesystem-ts "" }
4
a945c346 5// Copyright (C) 2018-2024 Free Software Foundation, Inc.
c3b61fda
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// 8.4.9 path decomposition [path.decompose]
23
87e4fbdd 24#include <experimental/filesystem>
c3b61fda
JW
25#include <testsuite_hooks.h>
26
87e4fbdd 27using std::experimental::filesystem::path;
c3b61fda
JW
28
29void
30test01()
31{
87e4fbdd 32#ifdef _GLIBCXX_FILESYSTEM_IS_WINDOWS
9534a5e6
JW
33 const bool is_posix = false;
34#else
35 const bool is_posix = true;
36#endif
37
38 VERIFY( path("/").is_absolute() == is_posix );
39 VERIFY( path("/foo").is_absolute() == is_posix );
40 VERIFY( path("/foo/").is_absolute() == is_posix );
41 VERIFY( path("/foo/bar").is_absolute() == is_posix );
42 VERIFY( path("/foo/bar/").is_absolute() == is_posix );
c3b61fda
JW
43 VERIFY( ! path("foo").is_absolute() );
44 VERIFY( ! path("foo/").is_absolute() );
45 VERIFY( ! path("foo/bar").is_absolute() );
46 VERIFY( ! path("foo/bar/").is_absolute() );
47 VERIFY( ! path("c:").is_absolute() );
48 VERIFY( ! path("c:foo").is_absolute() );
49 VERIFY( ! path("c:foo/").is_absolute() );
50 VERIFY( ! path("c:foo/bar").is_absolute() );
51 VERIFY( ! path("c:foo/bar/").is_absolute() );
9534a5e6
JW
52 VERIFY( path("c:/").is_absolute() == !is_posix );
53 VERIFY( path("c:/foo").is_absolute() == !is_posix );
54 VERIFY( path("c:/foo/").is_absolute() == !is_posix );
55 VERIFY( path("c:/foo/bar").is_absolute() == !is_posix );
56 VERIFY( path("c:/foo/bar/").is_absolute() == !is_posix );
c3b61fda
JW
57}
58
59int
60main()
61{
62 test01();
63}