OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [libstdc++-v3/] [testsuite/] [27_io/] [basic_istream/] [getline/] [wchar_t/] [5.cc] - Blame information for rev 565

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// Copyright (C) 2004, 2005, 2006, 2007, 2009 Free Software Foundation
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
// 27.6.1.3 unformatted input functions
19
 
20 565 jeremybenn
// { dg-xfail-run-if "not supported on OR32 newlib" { or32-*-elf } }
21
 
22 424 jeremybenn
#include <istream>
23
#include <string>
24
#include <fstream>
25
#include <cstdlib>
26
#include <testsuite_hooks.h>
27
 
28
using namespace std;
29
 
30
wstring
31
prepare(wstring::size_type len, unsigned nchunks, wchar_t delim)
32
{
33
  wstring ret;
34
  for (unsigned i = 0; i < nchunks; ++i)
35
    {
36
      for (wstring::size_type j = 0; j < len; ++j)
37
        ret.push_back(L'a' + rand() % 26);
38
      len *= 2;
39
      ret.push_back(delim);
40
    }
41
  return ret;
42
}
43
 
44
void
45
check(wistream& stream, const wstring& str, unsigned nchunks, wchar_t delim)
46
{
47
  bool test __attribute__((unused)) = true;
48
 
49
  static wchar_t buf[1000000];
50
  wstring::size_type index = 0, index_new = 0;
51
  unsigned n = 0;
52
 
53
  while (stream.getline(buf, sizeof(buf) / sizeof(wchar_t), delim))
54
    {
55
      index_new = str.find(delim, index);
56
      VERIFY( static_cast<string::size_type>(stream.gcount()) ==
57
               index_new - index + 1 );
58
      VERIFY( !str.compare(index, index_new - index, buf) );
59
      index = index_new + 1;
60
      ++n;
61
    }
62
  VERIFY( stream.gcount() == 0 );
63
  VERIFY( stream.eof() );
64
  VERIFY( n == nchunks );
65
}
66
 
67
void test01()
68
{
69
  const char filename[] = "wistream_getline.txt";
70
 
71
  const wchar_t delim = L'|';
72
  const unsigned nchunks = 10;
73
  const wstring data = prepare(777, nchunks, delim);
74
 
75
  wofstream ofstrm;
76
  ofstrm.open(filename);
77
  ofstrm.write(data.data(), data.size());
78
  ofstrm.close();
79
 
80
  wifstream ifstrm;
81
  ifstrm.open(filename);
82
  check(ifstrm, data, nchunks, delim);
83
  ifstrm.close();
84
}
85
 
86
int main()
87
{
88
  test01();
89
  return 0;
90
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.