Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / sync / char / 1057.cc
blob2dad77ef5d63038e28afe221327e4939356378ec
1 // 1999-10-11 bkoz
3 // Copyright (C) 1999-2013 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.
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.
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/>.
21 // 27.5.2 template class basic_streambuf
23 #include <fstream>
24 #include <testsuite_hooks.h>
26 class setpbuf : public std::filebuf
28 char buffer[4];
29 std::string result;
31 public:
33 std::string&
34 get_result()
35 { return result; }
37 setpbuf()
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);
45 ~setpbuf()
47 sync();
48 close();
51 virtual int_type
52 overflow(int_type n)
54 if (sync() != 0)
55 return traits_type::eof();
57 result += traits_type::to_char_type(n);
59 return n;
62 virtual int
63 sync()
65 result.append(pbase(), pptr());
66 setp(buffer, buffer + 4);
67 return 0;
71 // libstdc++/1057
72 void test04()
74 bool test __attribute__((unused)) = true;
75 std::string text = "abcdefghijklmn";
77 // 01
78 setpbuf sp1;
79 // Here xsputn writes over sp1.result
80 sp1.sputn(text.c_str(), text.length());
82 // This crashes when result is accessed
83 sp1.pubsync();
84 VERIFY( sp1.get_result() == text );
86 // 02
87 setpbuf sp2;
88 for (std::string::size_type i = 0; i < text.length(); ++i)
90 // sputc also writes over result
91 sp2.sputc(text[i]);
94 // Crash here
95 sp2.pubsync();
96 VERIFY( sp2.get_result() == text );
99 int main()
101 test04();
102 return 0;