]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/find/istreambuf_iterators/char/1.cc
Update copyright years in libstdc++-v3/
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / find / istreambuf_iterators / char / 1.cc
CommitLineData
0002d5d2
PC
1// 2006-03-20 Paolo Carlini <pcarlini@suse.de>
2
aa118a03 3// Copyright (C) 2006-2014 Free Software Foundation, Inc.
0002d5d2
PC
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
0002d5d2
PC
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
2328b1de 12// but WITHOUT ANY WARRANTY; without even the implied warranty of
0002d5d2
PC
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
0002d5d2
PC
19
20#include <iterator>
21#include <sstream>
22#include <algorithm>
23#include <testsuite_hooks.h>
24
25// In the occasion of libstdc++/25482
26void test01()
27{
28 bool test __attribute__((unused)) = true;
29 using namespace std;
30
31 typedef istreambuf_iterator<char> in_iterator_type;
32
33 const char data1[] = "Drei Phantasien nach Friedrich Holderlin";
34 const string str1(data1);
35 istringstream iss1(str1);
36 in_iterator_type beg1(iss1);
37 in_iterator_type end1, it1;
38
39 it1 = find(beg1, beg1, 'l');
40 VERIFY( it1 == beg1 );
41 VERIFY( *it1 == 'D' );
42
43 it1 = find(end1, end1, 'D');
44 VERIFY( it1 == end1 );
45
46 it1 = find(end1, end1, 'Z');
47 VERIFY( it1 == end1 );
48
49 it1 = find(beg1, end1, 'P');
50 VERIFY( *it1 == 'P' );
51 it1 = find(beg1, end1, 't');
52 VERIFY( *it1 == 't' );
53 ++it1;
54 VERIFY( *it1 == 'a' );
55
56 it1 = find(beg1, end1, 'H');
57 VERIFY( *it1 == 'H' );
58 it1 = find(beg1, end1, 'l');
59 VERIFY( *it1 == 'l' );
60 ++it1;
61 it1 = find(beg1, end1, 'l');
62 VERIFY( *it1 == 'l' );
63 ++it1;
64 VERIFY( *it1 == 'i' );
65 it1 = find(beg1, end1, 'Z');
66 VERIFY( it1 == end1 );
67
68 it1 = find(beg1, end1, 'D');
69 VERIFY( it1 == end1 );
70
71 iss1.seekg(0);
72 it1 = find(beg1, end1, 'D');
73 VERIFY( it1 != end1 );
74 VERIFY( *it1 == 'D' );
75 ++it1;
76 VERIFY( *it1 == 'r' );
77}
78
79int main()
80{
81 test01();
82 return 0;
83}