]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_ifstream/rdbuf/char/2832.cc
locale_facets.tcc: Tweak to avoid warnings.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_ifstream / rdbuf / char / 2832.cc
CommitLineData
23cac885 1// Copyright (C) 2000, 2001, 2003 Free Software Foundation, Inc.
d422980b
BK
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 2, or (at your option)
7// any later version.
8
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.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING. If not, write to the Free
16// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17// USA.
18
23cac885
BK
19// 27.8.1.7 ifstream member functions
20// @require@ %-*.tst %-*.txt
21// @diff@ %-*.tst %-*.txt
d422980b 22
23cac885 23#include <istream>
d422980b 24#include <fstream>
fe413112 25#include <testsuite_hooks.h>
d422980b 26
23cac885
BK
27const char name_01[] = "ifstream_members-1.tst";
28const char name_02[] = "ifstream_members-1.txt";
29
d422980b
BK
30void
31redirect_buffer(std::ios& stream, std::streambuf* new_buf)
32{ stream.rdbuf(new_buf); }
33
34std::streambuf*
35active_buffer(std::ios& stream)
36{ return stream.rdbuf(); }
37
38// libstdc++/2832
23cac885 39void test03()
d422980b 40{
11f10e6b 41 bool test __attribute__((unused)) = true;
d422980b 42 const char* strlit01 = "fuck war";
d422980b
BK
43 const std::string str00;
44 const std::string str01(strlit01);
45 std::string str02;
46 std::filebuf fbuf;
47 std::streambuf* pbasebuf0 = &fbuf;
48
23cac885 49 std::ifstream sstrm1;
d422980b
BK
50 // derived rdbuf() always returns original streambuf, even though
51 // it's no longer associated with the stream.
52 std::filebuf* const buf1 = sstrm1.rdbuf();
53 // base rdbuf() returns the currently associated streambuf
54 std::streambuf* pbasebuf1 = active_buffer(sstrm1);
55 redirect_buffer(sstrm1, &fbuf);
56 std::filebuf* const buf2 = sstrm1.rdbuf();
57 std::streambuf* pbasebuf2 = active_buffer(sstrm1);
58 VERIFY( buf1 == buf2 );
59 VERIFY( pbasebuf1 != pbasebuf2 );
60 VERIFY( pbasebuf2 == pbasebuf0 );
61
62 // How confusing and non-intuitive is this?
63 // These semantics are a joke, a serious defect, and incredibly lame.
64}
65
66int main()
67{
23cac885 68 test03();
d422980b
BK
69 return 0;
70}
71
72
73