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/] [tellg/] [wchar_t/] [sstream.cc] - Blame information for rev 565

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// Copyright (C) 2004, 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
// NB: ostream has a particular "seeks" category. Adopt this for istreams too.
20
// @require@ %-*.tst %-*.txt
21
// @diff@ %-*.tst %-*.txt
22
 
23 565 jeremybenn
// { dg-xfail-run-if "not supported on OR32 newlib" { or32-*-elf } }
24
 
25 424 jeremybenn
#include <istream>
26
#include <sstream>
27
#include <fstream>
28
#include <testsuite_hooks.h>
29
 
30
// stringstreams
31
void test05(void)
32
{
33
  typedef std::wistream::off_type off_type;
34
 
35
  bool test __attribute__((unused)) = true;
36
  std::wistream::pos_type pos01, pos02, pos03, pos04, pos05, pos06;
37
  std::ios_base::iostate state01, state02;
38
  const char str_lit01[] = "wistream_seeks-1.tst";
39
  std::wifstream if01(str_lit01);
40
  std::wifstream if02(str_lit01);
41
  std::wifstream if03(str_lit01);
42
  VERIFY( if01.good() );
43
  VERIFY( if02.good() );
44
  VERIFY( if03.good() );
45
 
46
  std::wstringbuf strbuf01(std::ios_base::in | std::ios_base::out);
47
  if01 >> &strbuf01;
48
  // initialize stringbufs that are ios_base::out
49
  std::wstringbuf strbuf03(strbuf01.str(), std::ios_base::out);
50
  // initialize stringbufs that are ios_base::in
51
  std::wstringbuf strbuf02(strbuf01.str(), std::ios_base::in);
52
 
53
  std::wistream is01(&strbuf01);
54
  std::wistream is02(&strbuf02);
55
  std::wistream is03(&strbuf03);
56
 
57
  // pos_type tellg()
58
  // in | out
59
  pos01 = is01.tellg();
60
  pos02 = is01.tellg();
61
  VERIFY( pos01 == pos02 );
62
 
63
  // in
64
  pos03 = is02.tellg();
65
  pos04 = is02.tellg();
66
  VERIFY( pos03 == pos04 );
67
 
68
  // out
69
  pos05 = is03.tellg();
70
  pos06 = is03.tellg();
71
  VERIFY( pos05 == pos06 );
72
 
73
  // cur 
74
  // NB: see library issues list 136. It's the v-3 interp that seekg
75
  // only sets the input buffer, or else istreams with buffers that
76
  // have _M_mode == ios_base::out will fail to have consistency
77
  // between seekg and tellg.
78
  state01 = is01.rdstate();
79
  is01.seekg(10, std::ios_base::cur);
80
  state02 = is01.rdstate();
81
  pos01 = is01.tellg();
82
  VERIFY( pos01 == pos02 + off_type(10) );
83
  VERIFY( state01 == state02 );
84
  pos02 = is01.tellg();
85
  VERIFY( pos02 == pos01 );
86
}
87
 
88
int main()
89
{
90
  test05();
91
  return 0;
92
}

powered by: WebSVN 2.1.0

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