]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_streambuf/imbue/wchar_t/9322.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_streambuf / imbue / wchar_t / 9322.cc
CommitLineData
4216708a
JM
1// { dg-require-namedlocale "en_US.ISO8859-1" }
2// { dg-require-namedlocale "de_DE.ISO8859-15" }
f63a8495 3
6f422965
PC
4// 1999-10-11 bkoz
5
a945c346 6// Copyright (C) 1999-2024 Free Software Foundation, Inc.
6f422965
PC
7//
8// This file is part of the GNU ISO C++ Library. This library is free
9// software; you can redistribute it and/or modify it under the
10// terms of the GNU General Public License as published by the
748086b7 11// Free Software Foundation; either version 3, or (at your option)
6f422965
PC
12// any later version.
13
14// This library is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18
19// You should have received a copy of the GNU General Public License along
748086b7
JJ
20// with this library; see the file COPYING3. If not see
21// <http://www.gnu.org/licenses/>.
6f422965 22
6f422965
PC
23
24// 27.5.2 template class basic_streambuf
25
26#include <streambuf>
27#include <locale>
28#include <testsuite_hooks.h>
29
30class testbuf : public std::wstreambuf
31{
32public:
33 typedef std::wstreambuf::traits_type traits_type;
34
35 testbuf() : std::wstreambuf() { }
36};
37
38// libstdc++/9322
39void test08()
40{
41 using std::locale;
6f422965
PC
42
43 locale loc;
44 testbuf ob;
45 VERIFY( ob.getloc() == loc );
46
4216708a 47 locale::global(locale(ISO_8859(1,en_US)));
6f422965
PC
48 VERIFY( ob.getloc() == loc );
49
4216708a 50 locale loc_de = locale(ISO_8859(15,de_DE));
6f422965
PC
51 locale ret = ob.pubimbue(loc_de);
52 VERIFY( ob.getloc() == loc_de );
53 VERIFY( ret == loc );
54
55 locale::global(loc);
56 VERIFY( ob.getloc() == loc_de );
57}
58
59int main()
60{
61 test08();
62 return 0;
63}