]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/25_algorithms/advance/istreambuf_iterators/wchar_t/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 25_algorithms / advance / istreambuf_iterators / wchar_t / 2.cc
CommitLineData
7adcbafe 1// Copyright (C) 2017-2022 Free Software Foundation, Inc.
e324f9cb
FD
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 3, 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 COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
17
18// { dg-require-fileio "" }
19
20#include <iterator>
21#include <fstream>
22#include <algorithm>
23
24#include <testsuite_hooks.h>
25
26void test01()
27{
28 using namespace std;
29
30 typedef istreambuf_iterator<wchar_t> in_iterator_type;
31
32 unsigned found = 0;
33
34 {
35 wifstream fbuf("istream_unformatted-1.txt");
36
37 in_iterator_type beg(fbuf);
38 in_iterator_type end;
39
40 for (;;)
41 {
42 beg = find(beg, end, L'1');
43 if (beg == end)
44 break;
45
46 ++found;
47 VERIFY( *beg == L'1' );
48
49 advance(beg, 9);
50 VERIFY( *beg == L'0' );
51 }
52 }
53
54 {
55 wifstream fbuf("istream_unformatted-1.txt");
56
57 in_iterator_type beg(fbuf);
58 in_iterator_type end;
59
60 beg = find(beg, end, L'1');
61 VERIFY( beg != end );
62 VERIFY( *beg == L'1' );
63
64 advance(beg, 9);
65 VERIFY( *beg == L'0' );
66
67 unsigned line_length = 10;
68 while (*++beg != L'1')
69 ++line_length;
70
71 // Try to jump directly to the end through advance.
72 advance(beg, (found - 2) * line_length + 9);
73 VERIFY( *beg == L'0' );
74 VERIFY( find(beg, end, L'1') == end );
75 }
76}
77
78int main()
79{
80 test01();
81 return 0;
82}