Merge from mainline
[official-gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / tellg / char / 8348.cc
blobba219fcb5dd548be75a6e8d56bf392168570b134
1 // 2000-06-29 bkoz
3 // Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006
4 // Free Software Foundation
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the
8 // terms of the GNU General Public License as published by the
9 // Free Software Foundation; either version 2, or (at your option)
10 // any later version.
12 // This library is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // You should have received a copy of the GNU General Public License along
18 // with this library; see the file COPYING. If not, write to the Free
19 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20 // USA.
22 // 27.6.1.3 unformatted input functions
23 // NB: ostream has a particular "seeks" category. Adopt this for istreams too.
25 #include <istream>
26 #include <sstream>
27 #include <testsuite_hooks.h>
29 // libstdc++/8348
30 void test06(void)
32 using namespace std;
33 bool test __attribute__((unused)) = true;
34 string num1("555");
36 // tellg
38 istringstream iss(num1);
39 istream::pos_type pos1 = iss.tellg();
40 int asNum = 0;
41 iss >> asNum;
42 VERIFY( test = iss.eof() );
43 VERIFY( test = !iss.fail() );
44 iss.clear();
45 iss.tellg();
46 VERIFY( test = !iss.fail() );
49 // seekg
51 istringstream iss(num1);
52 istream::pos_type pos1 = iss.tellg();
53 int asNum = 0;
54 iss >> asNum;
55 VERIFY( test = iss.eof() );
56 VERIFY( test = !iss.fail() );
57 iss.clear();
58 iss.seekg(0, ios_base::beg);
59 VERIFY( test = !iss.fail() );
62 // seekg
64 istringstream iss(num1);
65 istream::pos_type pos1 = iss.tellg();
66 int asNum = 0;
67 iss >> asNum;
68 VERIFY( test = iss.eof() );
69 VERIFY( test = !iss.fail() );
70 iss.clear();
71 iss.seekg(pos1);
72 VERIFY( test = !iss.fail() );
76 int main()
78 test06();
79 return 0;