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/] [char/] [2.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
// 2001-09-21 Benjamin Kosnik  <bkoz@redhat.com>
4
 
5
// Copyright (C) 2001, 2002, 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
void test02()
30
{
31
  using namespace std;
32
  bool test __attribute__((unused)) = true;
33
 
34
  typedef istreambuf_iterator<char> iterator_type;
35
 
36
  // basic construction and sanity checks.
37
  locale loc_c = locale::classic();
38
  locale loc_hk = locale("en_HK");
39
  locale loc_de = locale("de_DE");
40
  VERIFY( loc_hk != loc_c );
41
  VERIFY( loc_hk != loc_de );
42
 
43
  const string empty;
44
 
45
  // create an ostream-derived object, cache the time_get facet
46
  iterator_type end;
47
 
48
  istringstream iss;
49
  const time_get<char>& tim_get = use_facet<time_get<char> >(iss.getloc());
50
 
51
  const ios_base::iostate good = ios_base::goodbit;
52
  ios_base::iostate errorstate = good;
53
 
54
  // create "C" time objects
55
  const tm time_bday = __gnu_test::test_tm(0, 0, 12, 4, 3, 71, 0, 93, 0);
56
 
57
  // iter_type 
58
  // get_date(iter_type, iter_type, ios_base&, ios_base::iostate&, tm*) const
59
 
60
  // sanity checks for "C" locale
61
  iss.imbue(loc_c);
62
  iss.str("04/04/71");
63
  iterator_type is_it01(iss);
64
  errorstate = good;
65
 
66
  // inspection of named locales, de_DE
67
  iss.imbue(loc_de);
68
  iss.str("04.04.1971");
69
  iterator_type is_it10(iss);
70
  tm time10;
71
  errorstate = good;
72
  tim_get.get_date(is_it10, end, iss, errorstate, &time10);
73
  VERIFY( time10.tm_mon == time_bday.tm_mon );
74
  VERIFY( time10.tm_mday == time_bday.tm_mday );
75
  VERIFY( time10.tm_year == time_bday.tm_year );
76
  VERIFY( errorstate == ios_base::eofbit );
77
 
78
  // inspection of named locales, en_HK
79
  iss.imbue(loc_hk);
80
  iss.str("Sunday, April 04, 1971");
81
  iterator_type is_it20(iss);
82
  tm time20;
83
  errorstate = good;
84
  tim_get.get_date(is_it20, end, iss, errorstate, &time20);
85
  VERIFY( time20.tm_mon == time_bday.tm_mon );
86
  VERIFY( time20.tm_mday == time_bday.tm_mday );
87
  VERIFY( time20.tm_year == time_bday.tm_year );
88
  VERIFY( errorstate == ios_base::eofbit );
89
}
90
 
91
int main()
92
{
93
  test02();
94
  return 0;
95
}

powered by: WebSVN 2.1.0

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