OSDN Git Service

* testsuite/lib/libstdc++.exp (check_v3_target_fileio,
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / extractors_character / char / 4.cc
1 // 2005-07-22  Paolo Carlini  <pcarlini@suse.de>
2
3 // Copyright (C) 2005, 2006, 2007 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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
20
21 // 27.6.1.2.3 basic_istream::operator>>
22
23 // { dg-require-fileio "" }
24
25 #include <istream>
26 #include <string>
27 #include <fstream>
28 #include <cstdlib>
29 #include <testsuite_hooks.h>
30
31 using namespace std;
32
33 string prepare(string::size_type len, unsigned nchunks)
34 {
35   string ret;
36   for (unsigned i = 0; i < nchunks; ++i)
37     {
38       for (string::size_type j = 0; j < len; ++j)
39         ret.push_back('a' + rand() % 26);
40       len *= 2;
41       ret.push_back(' ');
42     }
43   return ret;
44 }
45
46 void check(istream& stream, const string& str, unsigned nchunks)
47 {
48   bool test __attribute__((unused)) = true;
49
50   char* chunk = new char[str.size()];
51   memset(chunk, 'X', str.size());
52
53   string::size_type index = 0, index_new = 0;
54   unsigned n = 0;
55
56   while (stream >> chunk)
57     {
58       index_new = str.find(' ', index);
59       VERIFY( !str.compare(index, index_new - index, chunk) );
60       index = index_new + 1;
61       ++n;
62       memset(chunk, 'X', str.size());
63     }
64   VERIFY( stream.eof() );
65   VERIFY( n == nchunks );
66
67   delete[] chunk;
68 }
69
70 // istream& operator>>(istream&, charT*)
71 void test01()
72 {
73   const char filename[] = "inserters_extractors-4.txt";
74
75   const unsigned nchunks = 10;
76   const string data = prepare(666, nchunks);
77
78   ofstream ofstrm;
79   ofstrm.open(filename);
80   ofstrm.write(data.data(), data.size());
81   ofstrm.close();
82
83   ifstream ifstrm;
84   ifstrm.open(filename);
85   check(ifstrm, data, nchunks);
86   ifstrm.close();
87 }
88
89 int main()
90 {
91   test01();
92   return 0;
93 }