]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_istream/read/char/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / read / char / 2.cc
CommitLineData
23cac885
BK
1// 1999-08-11 bkoz
2
83ffe9cd 3// Copyright (C) 1999-2023 Free Software Foundation, Inc.
23cac885
BK
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
748086b7 8// Free Software Foundation; either version 3, or (at your option)
23cac885
BK
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
23cac885
BK
19
20// 27.6.1.3 unformatted input functions
23cac885 21
23cac885
BK
22#include <istream>
23#include <sstream>
23cac885
BK
24#include <testsuite_hooks.h>
25
26// Jim Parsons <parsons at clearway dot com>
27// http://gcc.gnu.org/ml/libstdc++/2000-q1/msg00177.html
28void
29test04()
30{
23cac885 31 const std::string str_00("Red_Garland_Qunitet-Soul_Junction");
23cac885
BK
32 char c_array[str_00.size() + 4];
33
34 std::stringbuf isbuf_00(str_00, std::ios_base::in);
35 std::istream is_00(&isbuf_00);
11f10e6b 36 std::ios_base::iostate state1, statefail, stateeof;
23cac885
BK
37 statefail = std::ios_base::failbit;
38 stateeof = std::ios_base::eofbit;
39
40 state1 = stateeof | statefail;
41 VERIFY( is_00.gcount() == 0 );
42 is_00.read(c_array, str_00.size() + 1);
11f10e6b 43 VERIFY( is_00.gcount() == static_cast<std::streamsize>(str_00.size()) );
23cac885
BK
44 VERIFY( is_00.rdstate() == state1 );
45
46 is_00.read(c_array, str_00.size());
47 VERIFY( is_00.rdstate() == state1 );
48}
49
50int
51main()
52{
53 test04();
54 return 0;
55}