OSDN Git Service

* testsuite/lib/libstdc++.exp (check_v3_target_fileio,
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / sbumpc / char / 1-io.cc
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
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
20
21 // 27.8.1.4 Overridden virtual functions
22
23 // { dg-require-fileio "" }
24
25 #include <fstream>
26 #include <testsuite_hooks.h>
27 #include <testsuite_io.h>
28
29 // @require@ %-*.tst %-*.txt
30 // @diff@ %-*.tst %*.txt
31
32 const char name_01[] = "sgetc.txt"; // file with data in it
33 const char name_03[] = "tmp_sbumpc_1io.tst"; // empty file, need to create
34
35 void test05() 
36 {
37   using namespace std;
38   using namespace __gnu_test;
39   typedef filebuf::int_type     int_type;
40   typedef filebuf::traits_type  traits_type;
41
42   bool test __attribute__((unused)) = true;
43
44   // int_type sbumpc()
45   // if read_cur not avail returns uflow(), else return *read_cur & increment
46
47   // in | out 1
48   {
49     constraint_filebuf fb_03; 
50     fb_03.open(name_03, ios_base::out | ios_base::in | ios_base::trunc); 
51     VERIFY( !fb_03.write_position() );
52     VERIFY( !fb_03.read_position() );
53     int_type c5 = fb_03.sbumpc();
54     VERIFY( c5 == traits_type::eof() );
55     VERIFY( !fb_03.write_position() );
56     VERIFY( !fb_03.read_position() );
57   }
58
59   // in | out 2
60   {
61     constraint_filebuf fb_01; 
62     fb_01.open(name_01, ios_base::in | ios_base::out);
63     VERIFY( !fb_01.write_position() );
64
65     int_type c1 = fb_01.sbumpc();
66     VERIFY( c1 == '/' );
67     int_type c3 = fb_01.sbumpc();
68     VERIFY( c3 == '/' );
69
70     c1 = fb_01.sgetc();
71     int_type c2 = fb_01.sbumpc();
72     c3 = fb_01.sgetc();
73     VERIFY( c1 == ' ' );
74     VERIFY( c3 == '9' );
75     VERIFY( c1 == c2 );
76     VERIFY( c2 != c3 );
77
78     c1 = fb_01.sbumpc();
79     c2 = fb_01.sbumpc();
80     c3 = fb_01.sgetc();
81     VERIFY( c1 == '9' );
82     VERIFY( c2 == '9' );
83     VERIFY( c3 == '0' );
84
85     VERIFY( !fb_01.write_position() );
86     VERIFY( fb_01.read_position() );
87   }
88 }
89
90 int main() 
91 {
92   test05();
93   return 0;
94 }