OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libstdc++-v3/] [testsuite/] [27_io/] [basic_istream/] [ignore/] [wchar_t/] [1.cc] - Blame information for rev 19

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 19 jlechner
// Copyright (C) 2004 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 2, 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 COPYING.  If not, write to the Free
16
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17
// USA.
18
 
19
// 27.6.1.3 unformatted input functions
20
 
21
#include <istream>
22
#include <sstream>
23
#include <testsuite_hooks.h>
24
 
25
void
26
test01()
27
{
28
  typedef std::ios::traits_type traits_type;
29
 
30
  bool test __attribute__((unused)) = true;
31
  const std::wstring str_01;
32
  const std::wstring str_02(L"soul eyes: john coltrane quartet");
33
  std::wstring strtmp;
34
 
35
  std::wstringbuf isbuf_03(str_02, std::ios_base::in);
36
  std::wstringbuf isbuf_04(str_02, std::ios_base::in);
37
 
38
  std::wistream is_00(NULL);
39
  std::wistream is_03(&isbuf_03);
40
  std::wistream is_04(&isbuf_04);
41
  std::ios_base::iostate state1, state2, statefail, stateeof;
42
  statefail = std::ios_base::failbit;
43
  stateeof = std::ios_base::eofbit;
44
 
45
  // istream& read(char_type* s, streamsize n)
46
  wchar_t carray[60] = L"";
47
  is_04.read(carray, 9);
48
  VERIFY( is_04.peek() == L':' );
49
 
50
  // istream& ignore(streamsize n = 1, int_type delim = traits::eof())
51
  state1 = is_04.rdstate();
52
  is_04.ignore();
53
  VERIFY( is_04.gcount() == 1 );
54
  state2 = is_04.rdstate();
55
  VERIFY( state1 == state2 );
56
  VERIFY( is_04.peek() == L' ' );
57
 
58
  state1 = is_04.rdstate();
59
  is_04.ignore(0);
60
  VERIFY( is_04.gcount() == 0 );
61
  state2 = is_04.rdstate();
62
  VERIFY( state1 == state2 );
63
  VERIFY( is_04.peek() == L' ' );
64
 
65
  state1 = is_04.rdstate();
66
  is_04.ignore(5, traits_type::to_int_type(' '));
67
  VERIFY( is_04.gcount() == 1 );
68
  state2 = is_04.rdstate();
69
  VERIFY( state1 == state2 );
70
  VERIFY( is_04.peek() == L'j' );
71
}
72
 
73
int
74
main()
75
{
76
  test01();
77
  return 0;
78
}

powered by: WebSVN 2.1.0

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