]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/sputbackc/char/2-out.cc
re PR testsuite/39696 (gcc.dg/tree-ssa/ssa-ccp-25.c scan-tree-dump doesn't work on...
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / sputbackc / char / 2-out.cc
CommitLineData
f10eea7b
PC
1// 2001-05-21 Benjamin Kosnik <bkoz@redhat.com>
2
3// Copyright (C) 2001, 2002, 2003 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 2, 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 COPYING. If not, write to the Free
83f51799 18// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
f10eea7b
PC
19// USA.
20
21// 27.8.1.4 Overridden virtual functions
22
79711d26
SL
23// { dg-require-fileio "" }
24
f10eea7b
PC
25#include <fstream>
26#include <testsuite_hooks.h>
27#include <testsuite_io.h>
28
29// @require@ %-*.tst %-*.txt
30// @diff@ %-*.tst %*.txt
31
32const char name_01[] = "tmp_sputbackc_2out.tst"; // empty file, need to create
33
34// Test overloaded virtual functions.
35void test01()
36{
37 using namespace std;
aecf642c 38 using namespace __gnu_test;
f10eea7b
PC
39 typedef std::filebuf::int_type int_type;
40 typedef filebuf::traits_type traits_type;
41
11f10e6b
BK
42 bool test __attribute__((unused)) = true;
43 int_type c1, c2;
f10eea7b
PC
44
45 // int_type sputbackc(char_type c)
46 // if in_cur not avail || ! traits::eq(c, gptr() [-1]), return pbfail
47 // otherwise decrements in_cur and returns *gptr()
48
49 // out
50 {
51 constraint_filebuf fb_01; // out
52 fb_01.pubsetbuf(0, 0);
53 fb_01.open(name_01, ios::out | ios::trunc);
54 VERIFY( fb_01.unbuffered() );
55 VERIFY( !fb_01.read_position() );
56 c1 = fb_01.sgetc();
57 VERIFY( c1 == traits_type::eof() );
58 c2 = fb_01.sputbackc('a');
59 VERIFY( c2 == traits_type::eof() );
60 fb_01.sbumpc();
61 c1 = fb_01.sbumpc();
62 c2 = fb_01.sputbackc('a');
63 VERIFY( c1 == c2 );
64 VERIFY( fb_01.unbuffered() );
65 VERIFY( !fb_01.read_position() );
66 }
67}
68
11f10e6b 69int main()
f10eea7b
PC
70{
71 test01();
72 return 0;
73}