OSDN Git Service

2006-03-21 Paolo Carlini <pcarlini@suse.de>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 25_algorithms / find / istreambuf_iterators / char / 2.cc
1 // 2006-03-20  Paolo Carlini  <pcarlini@suse.de>
2
3 // Copyright (C) 2006 Free Software Foundation, Inc.
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 Pred 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 #include <iterator>
22 #include <fstream>
23 #include <algorithm>
24 #include <testsuite_hooks.h>
25
26 // In the occasion of libstdc++/25482
27 void test01()
28 {
29   bool test __attribute__((unused)) = true;
30   using namespace std;
31
32   typedef istreambuf_iterator<char> in_iterator_type;
33
34   ifstream fbuf("istream_unformatted-1.txt");
35
36   in_iterator_type beg(fbuf);
37   in_iterator_type end;
38
39   unsigned found = 0;
40   for (;;)
41     {
42       beg = find(beg, end, '1');
43       if (beg == end)
44         break;
45       
46       ++found;
47       VERIFY( *beg == '1' );
48
49       for (unsigned sk = 0; sk < 9; sk++)
50         ++beg;
51       VERIFY( *beg == '0' );
52     }
53   VERIFY( found == 1500 );
54 }
55
56 int main()
57 {
58   test01();
59   return 0;
60 }