]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/sync/char/1057.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / sync / char / 1057.cc
CommitLineData
23cac885 1// 1999-10-11 bkoz
b2dad0e3 2
99dee823 3// Copyright (C) 1999-2021 Free Software Foundation, Inc.
b2dad0e3
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)
b2dad0e3
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/>.
19
b2dad0e3 20
23cac885 21// 27.5.2 template class basic_streambuf
b2dad0e3 22
23cac885 23#include <fstream>
f13a69ec 24#include <testsuite_hooks.h>
b2dad0e3 25
23cac885 26class setpbuf : public std::filebuf
bcc6a03a 27{
23cac885
BK
28 char buffer[4];
29 std::string result;
30
31public:
32
33 std::string&
34 get_result()
35 { return result; }
36
37 setpbuf()
38 {
39 this->open("tmp_1057", std::ios_base::out | std::ios_base::trunc);
40 char foo [32];
41 setp(foo, foo + 32);
42 setp(buffer, buffer + 4);
43 }
bcc6a03a 44
23cac885
BK
45 ~setpbuf()
46 {
47 sync();
48 close();
49 }
50
51 virtual int_type
52 overflow(int_type n)
53 {
54 if (sync() != 0)
55 return traits_type::eof();
56
57 result += traits_type::to_char_type(n);
58
59 return n;
60 }
61
62 virtual int
63 sync()
64 {
65 result.append(pbase(), pptr());
66 setp(buffer, buffer + 4);
67 return 0;
68 }
69};
70
71// libstdc++/1057
72void test04()
e6705174 73{
23cac885
BK
74 std::string text = "abcdefghijklmn";
75
76 // 01
77 setpbuf sp1;
78 // Here xsputn writes over sp1.result
79 sp1.sputn(text.c_str(), text.length());
80
81 // This crashes when result is accessed
82 sp1.pubsync();
83 VERIFY( sp1.get_result() == text );
84
85 // 02
86 setpbuf sp2;
87 for (std::string::size_type i = 0; i < text.length(); ++i)
88 {
89 // sputc also writes over result
90 sp2.sputc(text[i]);
91 }
92
93 // Crash here
94 sp2.pubsync();
95 VERIFY( sp2.get_result() == text );
96}
b2dad0e3 97
e6705174
BK
98int main()
99{
23cac885 100 test04();
b2dad0e3
BK
101 return 0;
102}