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

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc3/] [libstdc++-v3/] [testsuite/] [22_locale/] [time_get/] [get_weekday/] [char/] [38081-1.cc] - Blame information for rev 516

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 424 jeremybenn
// { dg-require-namedlocale "" }
2
 
3
// Copyright (C) 2010 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
// 22.2.5.1.1 time_get members
21
 
22
#include <locale>
23
#include <sstream>
24
#include <cstring>
25
#include <testsuite_hooks.h>
26
 
27
// libstdc++/38081
28
void test01()
29
{
30
  using namespace std;
31
  bool test __attribute__((unused)) = true;
32
 
33
  typedef istreambuf_iterator<char> iterator_type;
34
 
35
  // basic construction
36
  locale loc("ru_RU.ISO-8859-5");
37
 
38
  // create an ostream-derived object, cache the time_get facet
39
  iterator_type end;
40
 
41
  istringstream iss;
42
  iss.imbue(loc);
43
  const time_get<char>& tim_get = use_facet<time_get<char> >(iss.getloc());
44
 
45
  const ios_base::iostate good = ios_base::goodbit;
46
  ios_base::iostate errorstate = good;
47
 
48
  // iter_type 
49
  // get_weekday(iter_type, iter_type, ios_base&, 
50
  //             ios_base::iostate&, tm*) const
51
 
52
  iss.str("\xbf\xdd\xd4");
53
  iterator_type is_it01(iss);
54
  tm time01;
55
  memset(&time01, -1, sizeof(tm));
56
  errorstate = good;
57
  tim_get.get_weekday(is_it01, end, iss, errorstate, &time01);
58
  VERIFY( time01.tm_wday == 1 );
59
  VERIFY( errorstate == ios_base::eofbit );
60
 
61
  iss.str("\xbf\xde\xdd\xd5\xd4\xd5\xdb\xec\xdd\xd8\xda");
62
  iterator_type is_it02(iss);
63
  tm time02;
64
  memset(&time02, -1, sizeof(tm));
65
  errorstate = good;
66
  tim_get.get_weekday(is_it02, end, iss, errorstate, &time02);
67
  VERIFY( time02.tm_wday == 1 );
68
  VERIFY( errorstate == ios_base::eofbit );
69
 
70
  iss.str("\xbf\xdd\xd4\xd5\xd4\xd5\xdb\xec\xdd\xd8\xda");
71
  iterator_type is_it03(iss);
72
  tm time03;
73
  memset(&time03, -1, sizeof(tm));
74
  errorstate = good;
75
  iterator_type ret = tim_get.get_weekday(is_it03, end, iss,
76
                                          errorstate, &time03);
77
  VERIFY( time03.tm_wday == 1 );
78
  VERIFY( errorstate == ios_base::goodbit );
79
  VERIFY( *ret == '\xd5' );
80
}
81
 
82
int main()
83
{
84
  test01();
85
  return 0;
86
}

powered by: WebSVN 2.1.0

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