]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_istream/ignore/wchar_t/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / ignore / wchar_t / 2.cc
CommitLineData
a945c346 1// Copyright (C) 2004-2024 Free Software Foundation, Inc.
f8e7ffa6
PC
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
748086b7 6// Free Software Foundation; either version 3, or (at your option)
f8e7ffa6
PC
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
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
f8e7ffa6
PC
17
18// 27.6.1.3 unformatted input functions
19
5a0727d9 20// { dg-options "-DMAX_SIZE=355" { target simulator } }
6cec3c81 21// { dg-require-fileio "" }
5a0727d9
SE
22
23#ifndef MAX_SIZE
24#define MAX_SIZE 555
25#endif
26
f8e7ffa6
PC
27#include <istream>
28#include <string>
29#include <fstream>
30#include <limits>
debac9f4 31#include <cstdlib>
f8e7ffa6
PC
32#include <testsuite_hooks.h>
33
34using namespace std;
35
36wstring
37prepare(wstring::size_type len, unsigned nchunks, wchar_t delim)
38{
39 wstring ret;
40 for (unsigned i = 0; i < nchunks; ++i)
41 {
42 for (wstring::size_type j = 0; j < len; ++j)
43 ret.push_back(L'a' + rand() % 26);
44 len *= 2;
45 ret.push_back(delim);
46 }
47 return ret;
48}
49
50void
51check(wistream& stream, const wstring& str, unsigned nchunks, wchar_t delim)
52{
f8e7ffa6
PC
53 wstring::size_type index = 0, index_new = 0;
54 unsigned n = 0;
55
56 while (stream.ignore(numeric_limits<streamsize>::max(), delim).good())
57 {
58 index_new = str.find(delim, index);
8b5bc374
CJ
59 VERIFY( static_cast<string::size_type>(stream.gcount()) ==
60 index_new - index + 1 );
f8e7ffa6
PC
61 index = index_new + 1;
62 ++n;
63 }
64 VERIFY( stream.gcount() == 0 );
65 VERIFY( !stream.fail() );
66 VERIFY( n == nchunks );
67}
68
69void test01()
70{
71 const char filename[] = "wistream_ignore.txt";
72
73 const wchar_t delim = L'|';
74 const unsigned nchunks = 10;
5a0727d9 75 const wstring data = prepare(MAX_SIZE, nchunks, delim);
f8e7ffa6
PC
76
77 wofstream ofstrm;
78 ofstrm.open(filename);
79 ofstrm.write(data.data(), data.size());
80 ofstrm.close();
81
82 wifstream ifstrm;
83 ifstrm.open(filename);
84 check(ifstrm, data, nchunks, delim);
85 ifstrm.close();
86}
87
88int main()
89{
90 test01();
91 return 0;
92}