]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_stringbuf/overflow/char/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_stringbuf / overflow / char / 2.cc
CommitLineData
a2febbfb 1// 1999-10-11 bkoz
b9e8095b 2
f1717362 3// Copyright (C) 1999-2016 Free Software Foundation, Inc.
b9e8095b 4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
b9e8095b 9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// You should have received a copy of the GNU General Public License along
6bc9506f 17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
b9e8095b 19
b9e8095b 20
a2febbfb 21// 27.5.2 template class basic_streambuf
b9e8095b 22
a2febbfb 23#include <sstream>
b9e8095b 24#include <ostream>
0cb0a61b 25#include <testsuite_hooks.h>
b9e8095b 26
a2febbfb 27// test03
28// http://gcc.gnu.org/ml/libstdc++/2000-q1/msg00151.html
29template<typename charT, typename traits = std::char_traits<charT> >
30 class basic_nullbuf : public std::basic_stringbuf<charT, traits>
31 {
32 protected:
33 typedef typename
34 std::basic_stringbuf<charT, traits>::int_type int_type;
35 virtual int_type
36 overflow(int_type c)
37 { return traits::not_eof(c); }
38 };
4ff4bf2b 39
a2febbfb 40typedef basic_nullbuf<char> nullbuf;
41
42template<typename T>
43 char
44 print(const T& x)
45 {
46 nullbuf ob;
47 std::ostream out(&ob);
48 out << x << std::endl;
49 return (!out ? '0' : '1');
50 }
343ac85c 51
a2febbfb 52void test03()
4ff4bf2b 53{
f8ef786c 54 bool test __attribute__((unused)) = true;
a2febbfb 55 const std::string control01("11111");
56 std::string test01;
57
58 test01 += print(true);
59 test01 += print(3.14159);
60 test01 += print(10);
61 test01 += print('x');
62 test01 += print("pipo");
63
64 VERIFY( test01 == control01 );
65}
b9e8095b 66
4ff4bf2b 67int main()
68{
a2febbfb 69 test03();
b9e8095b 70 return 0;
71}