Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_stringbuf / overflow / wchar_t / 26250.cc
blob6a4a9c315ca86549d46b2f4356005a95a26b510c
1 // Copyright (C) 2006-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.4 Overridden virtual functions
20 #include <sstream>
21 #include <testsuite_hooks.h>
23 struct pubbuf
24 : std::wstringbuf
26 using std::wstringbuf::eback;
27 using std::wstringbuf::egptr;
28 using std::wstringbuf::pbase;
29 using std::wstringbuf::pptr;
30 using std::wstringbuf::epptr;
31 using std::wstringbuf::overflow;
34 // libstdc++/26250
35 void test01()
37 bool test __attribute__((unused)) = true;
39 pubbuf buf;
41 VERIFY( buf.overflow(L'x') == L'x' );
42 VERIFY( buf.pptr() - buf.pbase() == 1 );
44 // not required but good for efficiency
45 // NB: we are implementing DR 169 and DR 432
46 const int write_positions = buf.epptr() - buf.pbase();
47 VERIFY( write_positions > 1 );
49 // 27.7.1.3, p8:
50 VERIFY( buf.egptr() - buf.eback() == 1 );
53 int main()
55 test01();
56 return 0;