]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_istream/ignore/char/2.cc
istream.tcc (ignore): Correctly deal with n == numeric_limits<streamsize>::max().
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / ignore / char / 2.cc
CommitLineData
b1c5b5a0
PC
1// Copyright (C) 2004 Free Software Foundation
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
6// Free Software Foundation; either version 2, or (at your option)
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
15// with this library; see the file COPYING. If not, write to the Free
16// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
17// USA.
18
19// 27.6.1.3 unformatted input functions
20
21#include <istream>
22#include <string>
23#include <fstream>
24#include <limits>
25#include <testsuite_hooks.h>
26
27using namespace std;
28
29string prepare(string::size_type len, unsigned nchunks, char delim)
30{
31 string ret;
32 for (unsigned i = 0; i < nchunks; ++i)
33 {
34 for (string::size_type j = 0; j < len; ++j)
35 ret.push_back('a' + rand() % 26);
36 len *= 2;
37 ret.push_back(delim);
38 }
39 return ret;
40}
41
42void check(istream& stream, const string& str, unsigned nchunks, char delim)
43{
44 bool test __attribute__((unused)) = true;
45
46 string::size_type index = 0, index_new = 0;
47 unsigned n = 0;
48
49 while (stream.ignore(numeric_limits<streamsize>::max(), delim).good())
50 {
51 index_new = str.find(delim, index);
52 VERIFY( stream.gcount() == index_new - index + 1 );
53 index = index_new + 1;
54 ++n;
55 }
56 VERIFY( stream.gcount() == 0 );
57 VERIFY( !stream.fail() );
58 VERIFY( n == nchunks );
59}
60
61void test01()
62{
63 const char filename[] = "istream_ignore.txt";
64
65 const char delim = '|';
66 const unsigned nchunks = 10;
67 const string data = prepare(555, nchunks, delim);
68
69 ofstream ofstrm;
70 ofstrm.open(filename);
71 ofstrm.write(data.data(), data.size());
72 ofstrm.close();
73
74 ifstream ifstrm;
75 ifstrm.open(filename);
76 check(ifstrm, data, nchunks, delim);
77 ifstrm.close();
78}
79
80int main()
81{
82 test01();
83 return 0;
84}