Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / close / wchar_t / 12790-3.cc
blob04d95702bfb6889a9999e741855e4f453a129bf7
1 // Copyright (C) 2003-2013 Free Software Foundation, Inc.
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.
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.
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/>.
18 // 27.8.1.3 filebuf member functions
20 #include <locale>
21 #include <fstream>
22 #include <testsuite_hooks.h>
24 class Cvt : public std::codecvt<wchar_t, char, std::mbstate_t>
26 public:
27 mutable bool unshift_called;
29 Cvt()
30 : unshift_called(false)
31 { }
33 protected:
34 bool
35 do_always_noconv() const throw()
36 { return false; }
38 int
39 do_encoding() const throw()
40 { return -1; }
42 std::codecvt_base::result
43 do_unshift(std::mbstate_t&, char* to, char*, char*& to_next) const
45 unshift_called = true;
46 to_next = to;
47 return codecvt_base::error;
51 // libstdc++/12790
52 // basic_filebuf::close() should fail if codecvt::unshift() fails
53 void test01()
55 using namespace std;
57 bool test __attribute__((unused)) = true;
58 const char* name = "tmp_close_12790";
60 Cvt* cvt = new Cvt;
61 locale loc(locale::classic(), cvt);
63 wfilebuf fb;
64 fb.pubimbue(loc);
66 fb.open(name, ios_base::out);
67 fb.sputc('a');
69 VERIFY( !cvt->unshift_called );
70 wfilebuf* ret = fb.close();
71 VERIFY( cvt->unshift_called );
72 VERIFY( !ret );
75 int main()
77 test01();
78 return 0;