]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/filesystem/path/query/is_absolute.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / filesystem / path / query / is_absolute.cc
CommitLineData
2b522535 1// { dg-options "-std=gnu++17" }
c3b61fda 2// { dg-do run { target c++17 } }
c3b61fda 3
99dee823 4// Copyright (C) 2018-2021 Free Software Foundation, Inc.
c3b61fda
JW
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
9// Free Software Foundation; either version 3, or (at your option)
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
17// You should have received a copy of the GNU General Public License along
18// with this library; see the file COPYING3. If not see
19// <http://www.gnu.org/licenses/>.
20
21// 30.11.7.4.9 path decomposition [fs.path.decompose]
22
23#include <filesystem>
24#include <testsuite_hooks.h>
25
26using std::filesystem::path;
27
28void
29test01()
30{
9534a5e6
JW
31#ifdef _GLIBCXX_FILESYSTEM_IS_WINDOWS
32 const bool is_posix = false;
33#else
34 const bool is_posix = true;
35#endif
36
37 VERIFY( path("/").is_absolute() == is_posix );
38 VERIFY( path("/foo").is_absolute() == is_posix );
39 VERIFY( path("/foo/").is_absolute() == is_posix );
40 VERIFY( path("/foo/bar").is_absolute() == is_posix );
41 VERIFY( path("/foo/bar/").is_absolute() == is_posix );
c3b61fda
JW
42 VERIFY( ! path("foo").is_absolute() );
43 VERIFY( ! path("foo/").is_absolute() );
44 VERIFY( ! path("foo/bar").is_absolute() );
45 VERIFY( ! path("foo/bar/").is_absolute() );
46 VERIFY( ! path("c:").is_absolute() );
47 VERIFY( ! path("c:foo").is_absolute() );
48 VERIFY( ! path("c:foo/").is_absolute() );
49 VERIFY( ! path("c:foo/bar").is_absolute() );
50 VERIFY( ! path("c:foo/bar/").is_absolute() );
9534a5e6
JW
51 VERIFY( path("c:/").is_absolute() == !is_posix );
52 VERIFY( path("c:/foo").is_absolute() == !is_posix );
53 VERIFY( path("c:/foo/").is_absolute() == !is_posix );
54 VERIFY( path("c:/foo/bar").is_absolute() == !is_posix );
55 VERIFY( path("c:/foo/bar/").is_absolute() == !is_posix );
c3b61fda
JW
56}
57
58int
59main()
60{
61 test01();
62}