]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/setbuf/char/12875-2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / setbuf / char / 12875-2.cc
CommitLineData
85ec4feb 1// Copyright (C) 2003-2018 Free Software Foundation, Inc.
dfad48c6
PC
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
748086b7 6// Free Software Foundation; either version 3, or (at your option)
dfad48c6
PC
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
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
dfad48c6
PC
17
18// 27.8.1.4 Overridden virtual functions
19
0c20e4ec
NS
20// { dg-require-fileio "" }
21
dfad48c6
PC
22#include <fstream>
23#include <cstdio>
24#include <cstring>
25#include <testsuite_hooks.h>
26
27// libstdc++/12875
28void test02()
29{
30 using namespace std;
dfad48c6
PC
31
32 const char* name = "tmp_setbuf5";
33 static char buf[1024];
34
35 filebuf out;
36 out.open(name, ios_base::out);
37 streamsize r = out.sputn("Hello,", 6);
38 VERIFY( r == 6 );
39 out.pubsetbuf(buf, 1024);
40 r = out.sputn(" world", 6);
41 VERIFY( r == 6 );
42 VERIFY( out.close() );
43
44 FILE* in = fopen(name, "r");
45 char str[256];
820d2ff7 46 VERIFY( fgets(str, 256, in) );
dfad48c6
PC
47 VERIFY( !strcmp(str, "Hello, world") );
48 fclose(in);
49}
50
51int main()
52{
53 test02();
54 return 0;
55}