]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_streambuf/imbue/char/9322.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_streambuf / imbue / char / 9322.cc
CommitLineData
9c69a458
PC
1// { dg-require-namedlocale "en_US" }
2// { dg-require-namedlocale "de_DE" }
f63a8495 3
23cac885 4// 1999-10-11 bkoz
b2dad0e3 5
aa118a03 6// Copyright (C) 1999-2014 Free Software Foundation, Inc.
b2dad0e3
BK
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)
b2dad0e3
BK
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/>.
b2dad0e3 22
b2dad0e3 23
23cac885 24// 27.5.2 template class basic_streambuf
b2dad0e3 25
23cac885 26#include <streambuf>
6f422965 27#include <locale>
f13a69ec 28#include <testsuite_hooks.h>
b2dad0e3 29
23cac885 30class testbuf : public std::streambuf
bcc6a03a 31{
23cac885
BK
32public:
33 typedef std::streambuf::traits_type traits_type;
bcc6a03a 34
23cac885
BK
35 testbuf() : std::streambuf() { }
36};
37
38// libstdc++/9322
39void test08()
e6705174 40{
23cac885 41 using std::locale;
11f10e6b 42 bool test __attribute__((unused)) = true;
23cac885
BK
43
44 locale loc;
45 testbuf ob;
46 VERIFY( ob.getloc() == loc );
47
f63a8495 48 locale::global(locale("en_US"));
23cac885
BK
49 VERIFY( ob.getloc() == loc );
50
f63a8495 51 locale loc_de = locale("de_DE");
23cac885
BK
52 locale ret = ob.pubimbue(loc_de);
53 VERIFY( ob.getloc() == loc_de );
54 VERIFY( ret == loc );
55
56 locale::global(loc);
57 VERIFY( ob.getloc() == loc_de );
58}
b2dad0e3 59
e6705174
BK
60int main()
61{
3d838e28 62 test08();
b2dad0e3
BK
63 return 0;
64}