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

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libstdc++-v3/] [testsuite/] [22_locale/] [time_get/] [get_date/] [wchar_t/] [12750.cc] - Blame information for rev 19

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 19 jlechner
// { dg-require-namedlocale "" }
2
 
3
// 2003-10-27 Paolo Carlini  <pcarlini@suse.de>
4
 
5
// Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation
6
//
7
// This file is part of the GNU ISO C++ Library.  This library is free
8
// software; you can redistribute it and/or modify it under the
9
// terms of the GNU General Public License as published by the
10
// Free Software Foundation; either version 2, or (at your option)
11
// any later version.
12
 
13
// This library is distributed in the hope that it will be useful,
14
// but WITHOUT ANY WARRANTY; without even the implied warranty of
15
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
// GNU General Public License for more details.
17
 
18
// You should have received a copy of the GNU General Public License along
19
// with this library; see the file COPYING.  If not, write to the Free
20
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21
// USA.
22
 
23
// 22.2.5.1.1 time_get members
24
 
25
#include <locale>
26
#include <sstream>
27
#include <testsuite_hooks.h>
28
 
29
// libstdc++/12750
30
void test01()
31
{
32
  using namespace std;
33
  typedef istreambuf_iterator<wchar_t> iterator_type;
34
 
35
  bool test __attribute__((unused)) = true;
36
 
37
  // basic construction
38
  locale loc_is = locale("is_IS");
39
 
40
  // create an ostream-derived object, cache the time_get facet
41
  iterator_type end;
42
 
43
  wistringstream iss;
44
  const time_get<wchar_t>& tim_get = use_facet<time_get<wchar_t> >(iss.getloc());
45
 
46
  const ios_base::iostate good = ios_base::goodbit;
47
  ios_base::iostate errorstate = good;
48
 
49
  // create "C" time objects
50
  const tm time_bday01 = __gnu_test::test_tm(0, 0, 12, 2, 9, 103, 4, 274, -1);
51
  const tm time_bday02 = __gnu_test::test_tm(0, 0, 12, 26, 9, 103, 0, 298, -1);
52
 
53
  // inspection of named locales, is_IS
54
  iss.imbue(loc_is);
55
 
56
  iss.str(L"Fim  2.Okt 2003");
57
  iterator_type is_it01(iss);
58
  tm time01;
59
  errorstate = good;
60
  tim_get.get_date(is_it01, end, iss, errorstate, &time01);
61
  VERIFY( time01.tm_mon == time_bday01.tm_mon );
62
  VERIFY( time01.tm_mday == time_bday01.tm_mday );
63
  VERIFY( time01.tm_year == time_bday01.tm_year );
64
  VERIFY( errorstate == ios_base::eofbit );
65
 
66
  iss.str(L"Sun 26.Okt 2003");
67
  iterator_type is_it02(iss);
68
  tm time02;
69
  errorstate = good;
70
  tim_get.get_date(is_it02, end, iss, errorstate, &time02);
71
  VERIFY( time02.tm_mon == time_bday02.tm_mon );
72
  VERIFY( time02.tm_mday == time_bday02.tm_mday );
73
  VERIFY( time02.tm_year == time_bday02.tm_year );
74
  VERIFY( errorstate == ios_base::eofbit );
75
}
76
 
77
int main()
78
{
79
  test01();
80
  return 0;
81
}

powered by: WebSVN 2.1.0

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