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