]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/conversions/buffer/3.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / conversions / buffer / 3.cc
CommitLineData
a945c346 1// Copyright (C) 2017-2024 Free Software Foundation, Inc.
d2e9196e
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
18// { dg-do run { target c++11 } }
19
20#include <locale>
21#include <streambuf>
22#include <testsuite_hooks.h>
23
24struct streambuf : std::streambuf
25{
26 int_type underflow() override
27 {
28 if (c != '\0')
29 {
30 this->setg(&c, &c, &c + 1);
31 return *this->gptr();
32 }
33 c = '\0';
34 return traits_type::eof();
35 }
36
37private:
38 char c = 'a';
39};
40
d2e9196e
JW
41
42void
43test01()
44{
43e2a441
JW
45#ifdef _GLIBCXX_USE_WCHAR_T
46 struct codecvt : std::codecvt<wchar_t, char, std::mbstate_t> { };
d2e9196e
JW
47 // https://gcc.gnu.org/ml/libstdc++/2017-11/msg00022.html
48 streambuf sb;
49 std::wbuffer_convert<codecvt> conv(&sb);
50 VERIFY( sb.in_avail() == 0 );
51 wchar_t c = conv.sgetc();
52 VERIFY( c == L'a' );
43e2a441
JW
53#endif
54}
55
56
57void
58test02()
59{
60 struct codecvt : std::codecvt<char16_t, char, std::mbstate_t> { };
61 // https://gcc.gnu.org/ml/libstdc++/2017-11/msg00022.html
62 streambuf sb;
63 std::wbuffer_convert<codecvt, char16_t> conv(&sb);
64 VERIFY( sb.in_avail() == 0 );
65 char16_t c = conv.sgetc();
66 VERIFY( c == u'a' );
d2e9196e
JW
67}
68
69int
70main()
71{
72 test01();
43e2a441 73 test02();
d2e9196e 74}