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/] [ext/] [stdio_sync_filebuf/] [wchar_t/] [1.cc] - Blame information for rev 565

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// 2003-05-01 Petur Runolfsson <peturr02@ru.is>
2
 
3
// Copyright (C) 2003, 2004, 2005, 2006, 2007, 2009 Free Software Foundation
4
//
5
// This file is part of the GNU ISO C++ Library.  This library is free
6
// software; you can redistribute it and/or modify it under the
7
// terms of the GNU General Public License as published by the
8
// Free Software Foundation; either version 3, or (at your option)
9
// any later version.
10
 
11
// This library is distributed in the hope that it will be useful,
12
// but WITHOUT ANY WARRANTY; without even the implied warranty of
13
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
// GNU General Public License for more details.
15
 
16
// You should have received a copy of the GNU General Public License along
17
// with this library; see the file COPYING3.  If not see
18
// <http://www.gnu.org/licenses/>.
19
 
20 565 jeremybenn
// { dg-xfail-run-if "not supported on OR32 newlib" { or32-*-elf } }
21
 
22 424 jeremybenn
#include <ext/stdio_sync_filebuf.h>
23
#include <cstring>
24
#include <testsuite_hooks.h>
25
 
26
void test01()
27
{
28
  using namespace std;
29
  typedef char_traits<wchar_t> traits_type;
30
 
31
  bool test __attribute__((unused)) = true;
32
  const char* c_lit = "black pearl jasmine tea";
33
  const wchar_t* w_lit = L"black pearl jasmine tea";
34
  int size = strlen(c_lit);
35
  const char* name = "stdiobuf-1.txt";
36
 
37
  FILE* fout = fopen(name, "w");
38
  fwrite(c_lit, 1, size, fout);
39
  fclose(fout);
40
 
41
  FILE* fin = fopen(name, "r");
42
  __gnu_cxx::stdio_sync_filebuf<wchar_t> wsbuf(fin);
43
 
44
  VERIFY( traits_type::to_char_type(wsbuf.sgetc()) == w_lit[0] );
45
  VERIFY( traits_type::to_char_type(getwc(fin)) == w_lit[0] );
46
  VERIFY( traits_type::to_char_type(wsbuf.sgetc()) == w_lit[1] );
47
  VERIFY( traits_type::to_char_type(wsbuf.sbumpc()) == w_lit[1] );
48
  VERIFY( ungetwc(L'Z', fin) == L'Z' );
49
  VERIFY( wsbuf.sbumpc() == L'Z' );
50
  VERIFY( traits_type::to_char_type(getwc(fin)) == w_lit[2] );
51
  VERIFY( wsbuf.sputbackc(L'X') == L'X' );
52
  VERIFY( getwc(fin) == L'X' );
53
 
54
  wchar_t buf[5];
55
  wmemset(buf, static_cast<wchar_t>(0xdeadbeef), 5);
56
  VERIFY( wsbuf.sgetn(buf, 5) == 5 );
57
  VERIFY( !wmemcmp(buf, w_lit + 3, 5) );
58
  VERIFY( traits_type::to_char_type(getwc(fin)) == w_lit[8] );
59
 
60
  fclose(fin);
61
}
62
 
63
int main ()
64
{
65
  test01();
66
  return 0;
67
}

powered by: WebSVN 2.1.0

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