]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/open/char/path.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / open / char / path.cc
CommitLineData
7adcbafe 1// Copyright (C) 2017-2022 Free Software Foundation, Inc.
d49f254a
JW
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
aa60ff1c 18// { dg-options "-lstdc++fs" }
d49f254a
JW
19// { dg-do run { target c++17 } }
20// { dg-require-fileio "" }
21// { dg-require-filesystem-ts "" }
22
23#include <fstream>
24#include <filesystem>
25#include <testsuite_hooks.h>
26
96e0367e
JW
27char cstr[] = "filebuf_members-1.tst";
28const std::filesystem::path filename = cstr;
d49f254a
JW
29
30void
31test01()
32{
33 std::filebuf fb;
34 fb.open(filename, std::ios::in);
35 VERIFY( fb.is_open() );
36}
37
96e0367e
JW
38void
39test02() // compile-only
40{
41 std::filebuf fb;
42 fb.open(cstr, std::ios::in); // PR libstdc++/83025
43}
44
d49f254a
JW
45int
46main()
47{
48 test01();
49}