]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_filebuf/seekoff/char/1-in.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_filebuf / seekoff / char / 1-in.cc
CommitLineData
9fe93909 1// 2001-05-21 Benjamin Kosnik <bkoz@redhat.com>
2
f1717362 3// Copyright (C) 2001-2016 Free Software Foundation, Inc.
9fe93909 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
6bc9506f 8// Free Software Foundation; either version 3, or (at your option)
9fe93909 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
6bc9506f 17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
9fe93909 19
20// 27.8.1.4 Overridden virtual functions
21
b14642ed 22// { dg-require-fileio "" }
23
9fe93909 24#include <fstream>
25#include <testsuite_hooks.h>
26#include <testsuite_io.h>
27
28// @require@ %-*.tst %-*.txt
29// @diff@ %-*.tst %*.txt
30
3bc1684c 31const char name_01[] = "seekoff.txt";
9fe93909 32
33void test05()
34{
35 using namespace std;
56dcf3cc 36 using namespace __gnu_test;
9fe93909 37
38 typedef filebuf::int_type int_type;
39 typedef filebuf::pos_type pos_type;
40 typedef filebuf::off_type off_type;
3bc1684c 41 typedef filebuf::traits_type traits_type;
9fe93909 42
f8ef786c 43 bool test __attribute__((unused)) = true;
1c78c762 44 streamsize strmsz_1;
9fe93909 45
46 int_type c1;
47 int_type c2;
48 int_type c3;
49
50 pos_type pt_1(off_type(-1));
51 pos_type pt_2(off_type(0));
52 off_type off_1 = 0;
53 off_type off_2 = 0;
54
55 // seekoff
56 // pubseekoff(off_type off, ios_base::seekdir way, ios_base::openmode which)
57 // alters the stream position to off
58
3bc1684c 59 // in
9fe93909 60 {
3bc1684c 61 constraint_filebuf fb;
62 fb.open(name_01, ios_base::in);
63 VERIFY( !fb.write_position() );
64
9fe93909 65 //beg
3bc1684c 66 strmsz_1 = fb.in_avail();
67 pt_1 = fb.pubseekoff(2, ios_base::beg);
1c78c762 68 fb.in_avail();
b812c14e 69 off_1 = off_type(pt_1);
9fe93909 70 VERIFY( off_1 > 0 );
3bc1684c 71 c1 = fb.snextc(); //current in pointer +1
9fe93909 72 VERIFY( c1 == '9' );
3bc1684c 73 fb.pubseekoff(3, ios_base::beg);
74 c2 = fb.sputc('\n'); //current in pointer +1
75 fb.pubseekoff(4, ios_base::beg);
76 c3 = fb.sgetc();
77 VERIFY( c2 == traits_type::eof() );
9fe93909 78 VERIFY( c3 == '9' );
3bc1684c 79 fb.pubsync();
80 c1 = fb.sgetc();
9fe93909 81 VERIFY( c1 == c3 );
3bc1684c 82
9fe93909 83 //cur
3bc1684c 84 pt_2 = fb.pubseekoff(2, ios_base::cur);
b812c14e 85 off_2 = off_type(pt_2);
9fe93909 86 VERIFY( (off_2 == (off_1 + 2 + 1 + 1)) );
3bc1684c 87 c1 = fb.snextc(); //current in pointer +1
9fe93909 88 VERIFY( c1 == '1' );
3bc1684c 89 fb.pubseekoff(0, ios_base::cur);
90 c2 = fb.sputc('x'); //test current out pointer
91 c3 = fb.sputc('\n');
92 VERIFY( c2 == traits_type::eof() );
93 VERIFY( c3 == traits_type::eof() );
94 fb.pubseekoff(0, ios_base::cur);
95 c1 = fb.sgetc();
96 fb.pubsync();
97 c3 = fb.sgetc();
9fe93909 98 VERIFY( c1 == c3 );
3bc1684c 99
9fe93909 100 //end
3bc1684c 101 pt_2 = fb.pubseekoff(0, ios_base::end);
b812c14e 102 off_1 = off_type(pt_2);
9fe93909 103 VERIFY( off_1 > off_2 ); //weak, but don't know exactly where it ends
3bc1684c 104 c3 = fb.sputc('\n');
105 strmsz_1 = fb.sputn("because because because. . .", 28);
106 VERIFY( strmsz_1 == 0 );
107 fb.pubseekoff(-1, ios_base::end);
108 fb.sgetc();
109 c1 = fb.sungetc();
9fe93909 110 // Defect? retval of sungetc is not necessarily the character ungotten.
111 // So re-get it.
3bc1684c 112 c1 = fb.sgetc();
113 fb.pubsync();
114 c3 = fb.sgetc();
9fe93909 115 VERIFY( c1 == c3 );
3bc1684c 116 VERIFY( !fb.write_position() );
9fe93909 117 }
118}
119
f8ef786c 120int main()
9fe93909 121{
122 test05();
123 return 0;
124}