Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libstdc++-v3 / testsuite / 27_io / basic_istream / getline / char / 5.cc
blobe2cb0b9d647bf9fa49bb3f01a8b2d6cbb59b723e
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.
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.
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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17 // USA.
19 // 27.6.1.3 unformatted input functions
21 #include <istream>
22 #include <string>
23 #include <fstream>
24 #include <testsuite_hooks.h>
26 using namespace std;
28 string prepare(string::size_type len, unsigned nchunks, char delim)
30 string ret;
31 for (unsigned i = 0; i < nchunks; ++i)
33 for (string::size_type j = 0; j < len; ++j)
34 ret.push_back('a' + rand() % 26);
35 len *= 2;
36 ret.push_back(delim);
38 return ret;
41 void check(istream& stream, const string& str, unsigned nchunks, char delim)
43 bool test __attribute__((unused)) = true;
45 char buf[1000000];
46 string::size_type index = 0, index_new = 0;
47 unsigned n = 0;
49 while (stream.getline(buf, sizeof(buf), delim))
51 index_new = str.find(delim, index);
52 VERIFY( stream.gcount() == index_new - index + 1 );
53 VERIFY( !str.compare(index, index_new - index, buf) );
54 index = index_new + 1;
55 ++n;
57 VERIFY( stream.gcount() == 0 );
58 VERIFY( stream.eof() );
59 VERIFY( n == nchunks );
62 void test01()
64 const char filename[] = "istream_getline.txt";
66 const char delim = '|';
67 const unsigned nchunks = 10;
68 const string data = prepare(777, nchunks, delim);
70 ofstream ofstrm;
71 ofstrm.open(filename);
72 ofstrm.write(data.data(), data.size());
73 ofstrm.close();
75 ifstream ifstrm;
76 ifstrm.open(filename);
77 check(ifstrm, data, nchunks, delim);
78 ifstrm.close();
81 int main()
83 test01();
84 return 0;