]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string/inserters_extractors/wchar_t/11.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / inserters_extractors / wchar_t / 11.cc
CommitLineData
99dee823 1// Copyright (C) 2004-2021 Free Software Foundation, Inc.
3adf6cad
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)
3adf6cad
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/>.
3adf6cad
PC
17
18// 21.3.7.9 inserters and extractors
19
2993114d 20// { dg-options "-DMAX_SIZE=466" { target simulator } }
6cec3c81 21// { dg-require-fileio "" }
2993114d
SE
22
23#ifndef MAX_SIZE
24#define MAX_SIZE 666
25#endif
26
3adf6cad
PC
27#include <istream>
28#include <string>
29#include <fstream>
debac9f4 30#include <cstdlib>
3adf6cad
PC
31#include <testsuite_hooks.h>
32
33using namespace std;
34
35wstring prepare(wstring::size_type len, unsigned nchunks)
36{
37 wstring ret;
38 for (unsigned i = 0; i < nchunks; ++i)
39 {
40 for (wstring::size_type j = 0; j < len; ++j)
41 ret.push_back(L'a' + rand() % 26);
42 len *= 2;
43 ret.push_back(L' ');
44 }
45 return ret;
46}
47
b1c5b5a0 48void check(wistream& stream, const wstring& str, unsigned nchunks)
3adf6cad 49{
3adf6cad
PC
50 wstring chunk;
51 wstring::size_type index = 0, index_new = 0;
b1c5b5a0 52 unsigned n = 0;
3adf6cad
PC
53
54 while (stream >> chunk)
55 {
56 index_new = str.find(L' ', index);
57 VERIFY( !str.compare(index, index_new - index, chunk) );
58 index = index_new + 1;
b1c5b5a0 59 ++n;
3adf6cad
PC
60 }
61 VERIFY( stream.eof() );
b1c5b5a0 62 VERIFY( n == nchunks );
3adf6cad
PC
63}
64
65// istream& operator>>(istream&, string&)
66void test01()
67{
68 const char filename[] = "inserters_extractors-3.txt";
69
b1c5b5a0 70 const unsigned nchunks = 10;
2993114d 71 const wstring data = prepare(MAX_SIZE, nchunks);
3adf6cad
PC
72
73 wofstream ofstrm;
74 ofstrm.open(filename);
75 ofstrm.write(data.data(), data.size());
76 ofstrm.close();
77
78 wifstream ifstrm;
79 ifstrm.open(filename);
b1c5b5a0 80 check(ifstrm, data, nchunks);
3adf6cad
PC
81 ifstrm.close();
82}
83
84int main()
85{
86 test01();
87 return 0;
88}