Merged revisions 195034,195219,195245,195357,195374,195428,195599,195673,195809 via...
[official-gcc.git] / main / libstdc++-v3 / testsuite / 27_io / basic_filebuf / imbue / char / 14975-1.cc
blobbb92fa4b3d892acbf1b83dc3c2b5a85d44e8e25b
1 // { dg-require-namedlocale "en_US" }
3 // 2004-04-16 Petur Runolfsson <peturr02@ru.is>
5 // Copyright (C) 2004-2013 Free Software Foundation, Inc.
6 //
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
11 // any later version.
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING3. If not see
20 // <http://www.gnu.org/licenses/>.
22 // 27.8.1.4 Overridden virtual functions
24 #include <fstream>
25 #include <locale>
26 #include <testsuite_hooks.h>
28 class Buf : public std::filebuf
30 protected:
31 virtual int_type
32 overflow(int_type c = traits_type::eof())
34 return traits_type::eq_int_type(c, traits_type::eof()) ?
35 traits_type::eof() : std::filebuf::overflow(c);
39 // libstdc++/14975
40 void test01()
42 using namespace std;
43 bool test __attribute__((unused)) = true;
45 Buf fb;
46 locale loc_us = locale("en_US");
47 fb.pubimbue(loc_us);
48 fb.open("tmp_14975-1", ios_base::out);
50 try
52 fb.sputc('a');
53 fb.sputc('b');
54 fb.pubimbue(locale::classic());
55 fb.sputc('c');
56 fb.pubsync();
57 fb.close();
59 catch (std::exception&)
64 int main()
66 test01();
67 return 0;