]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_istream/tellg/char/sstream.cc
Reshuffle 27_io testsuite.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / tellg / char / sstream.cc
CommitLineData
23cac885
BK
1// 2000-06-29 bkoz
2
3// Copyright (C) 2000, 2001, 2002, 2003 Free Software Foundation
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, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19// USA.
20
21// 27.6.1.3 unformatted input functions
22// NB: ostream has a particular "seeks" category. Adopt this for istreams too.
23// @require@ %-*.tst %-*.txt
24// @diff@ %-*.tst %-*.txt
25
26#include <istream>
27#include <sstream>
28#include <fstream>
29#include <testsuite_hooks.h>
30
31// stringstreams
32void test05(void)
33{
34 typedef std::istream::off_type off_type;
35
36 bool test = true;
37 std::istream::pos_type pos01, pos02, pos03, pos04, pos05, pos06;
38 std::ios_base::iostate state01, state02;
39 const char str_lit01[] = "istream_seeks-1.tst";
40 std::ifstream if01(str_lit01);
41 std::ifstream if02(str_lit01);
42 std::ifstream if03(str_lit01);
43 VERIFY( if01.good() );
44 VERIFY( if02.good() );
45 VERIFY( if03.good() );
46
47 std::stringbuf strbuf01(std::ios_base::in | std::ios_base::out);
48 if01 >> &strbuf01;
49 // initialize stringbufs that are ios_base::out
50 std::stringbuf strbuf03(strbuf01.str(), std::ios_base::out);
51 // initialize stringbufs that are ios_base::in
52 std::stringbuf strbuf02(strbuf01.str(), std::ios_base::in);
53
54 std::istream is01(&strbuf01);
55 std::istream is02(&strbuf02);
56 std::istream is03(&strbuf03);
57
58 // pos_type tellg()
59 // in | out
60 pos01 = is01.tellg();
61 pos02 = is01.tellg();
62 VERIFY( pos01 == pos02 );
63
64 // in
65 pos03 = is02.tellg();
66 pos04 = is02.tellg();
67 VERIFY( pos03 == pos04 );
68
69 // out
70 pos05 = is03.tellg();
71 pos06 = is03.tellg();
72 VERIFY( pos05 == pos06 );
73
74 // cur
75 // NB: see library issues list 136. It's the v-3 interp that seekg
76 // only sets the input buffer, or else istreams with buffers that
77 // have _M_mode == ios_base::out will fail to have consistency
78 // between seekg and tellg.
79 state01 = is01.rdstate();
80 is01.seekg(10, std::ios_base::cur);
81 state02 = is01.rdstate();
82 pos01 = is01.tellg();
83 VERIFY( pos01 == pos02 + off_type(10) );
84 VERIFY( state01 == state02 );
85 pos02 = is01.tellg();
86 VERIFY( pos02 == pos01 );
87}
88
89int main()
90{
91 test05();
92 return 0;
93}