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/] [22_locale/] [time_put/] [put/] [wchar_t/] [12439_2.cc] - Blame information for rev 565

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// Copyright (C) 2003, 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
// 22.2.5.3.1 time_put members
19
 
20 565 jeremybenn
// { dg-do run { target { ! or32-*-elf } } }
21
// { dg-do compile { target or32-*-elf } }
22
 
23 424 jeremybenn
#include <locale>
24
#include <sstream>
25
#include <ctime>
26
#include <cstring>
27
#include <testsuite_hooks.h>
28
 
29
// libstdc++/12439
30
// time_put::put writes narrowed characters to output iterator
31
void test02()
32
{
33
  using namespace std;
34
  bool test __attribute__((unused)) = true;
35
 
36
  typedef time_put<wchar_t> tp_type;
37
 
38
  const wchar_t fmt[] = {
39
    0xa0, 0x103, 0xfc, 0xb3, 0xa0c3,
40
    L'%', L'c'
41
  };
42
 
43
  const size_t len = sizeof(fmt) / sizeof(fmt[0]);
44
  const size_t cmplen = wcschr(fmt, L'%') - fmt;
45
 
46
  locale loc;
47
  const tp_type& tp = use_facet<tp_type>(loc);
48
  time_t tt = time(NULL);
49
  wostringstream stream;
50
 
51
  tp.put(tp_type::iter_type(stream), stream, stream.fill(),
52
         localtime(&tt), fmt, fmt + len);
53
  wstring str = stream.str();
54
  VERIFY( str.length() >= cmplen );
55
  VERIFY( !wmemcmp(str.data(), fmt, cmplen) );
56
}
57
 
58
int main()
59
{
60
  test02();
61
  return 0;
62
}

powered by: WebSVN 2.1.0

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