]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_ostringstream/rdbuf/char/2832.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_ostringstream / rdbuf / char / 2832.cc
CommitLineData
23cac885 1// 2001-05-23 Benjamin Kosnik <bkoz@redhat.com>
d422980b 2
aa118a03 3// Copyright (C) 2001-2014 Free Software Foundation, Inc.
d422980b
BK
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
d422980b
BK
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
d422980b 19
23cac885 20// 27.7.3.2 member functions (ostringstream_members)
d422980b 21
23cac885 22#include <sstream>
fe413112 23#include <testsuite_hooks.h>
d422980b
BK
24
25void
26redirect_buffer(std::ios& stream, std::streambuf* new_buf)
27{ stream.rdbuf(new_buf); }
28
29std::streambuf*
30active_buffer(std::ios& stream)
31{ return stream.rdbuf(); }
32
33// libstdc++/2832
34void test02()
35{
11f10e6b 36 bool test __attribute__((unused)) = true;
d422980b 37 const char* strlit01 = "fuck war";
d422980b
BK
38 const std::string str00;
39 const std::string str01(strlit01);
40 std::string str02;
23cac885
BK
41 std::stringbuf sbuf(str01);
42 std::streambuf* pbasebuf0 = &sbuf;
d422980b 43
23cac885
BK
44 std::ostringstream sstrm1;
45 VERIFY( sstrm1.str() == str00 );
d422980b
BK
46 // derived rdbuf() always returns original streambuf, even though
47 // it's no longer associated with the stream.
23cac885 48 std::stringbuf* const buf1 = sstrm1.rdbuf();
d422980b
BK
49 // base rdbuf() returns the currently associated streambuf
50 std::streambuf* pbasebuf1 = active_buffer(sstrm1);
23cac885
BK
51 redirect_buffer(sstrm1, &sbuf);
52 std::stringbuf* const buf2 = sstrm1.rdbuf();
d422980b
BK
53 std::streambuf* pbasebuf2 = active_buffer(sstrm1);
54 VERIFY( buf1 == buf2 );
55 VERIFY( pbasebuf1 != pbasebuf2 );
56 VERIFY( pbasebuf2 == pbasebuf0 );
57
23cac885
BK
58 // derived rdbuf() returns the original buf, so str() doesn't change.
59 VERIFY( sstrm1.str() != str01 );
60 VERIFY( sstrm1.str() == str00 );
61 // however, casting the active streambuf to a stringbuf shows what's up:
62 std::stringbuf* psbuf = dynamic_cast<std::stringbuf*>(pbasebuf2);
63 str02 = psbuf->str();
64 VERIFY( str02 == str01 );
65
d422980b
BK
66 // How confusing and non-intuitive is this?
67 // These semantics are a joke, a serious defect, and incredibly lame.
68}
69
70int main()
71{
72 test02();
73 return 0;
74}