OSDN Git Service

2011-06-07 Paolo Carlini <paolo.carlini@oracle.com>
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_weekday / char / 38081-1.cc
1 // { dg-require-namedlocale "ru_RU.ISO-8859-5" }
2
3 // Copyright (C) 2010, 2011 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 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 14)
53   iss.str("\xbf\xdd\x2e");
54 #else
55   iss.str("\xbf\xdd\xd4");
56 #endif
57   iterator_type is_it01(iss);
58   tm time01;
59   memset(&time01, -1, sizeof(tm));
60   errorstate = good;
61   tim_get.get_weekday(is_it01, end, iss, errorstate, &time01);
62   VERIFY( time01.tm_wday == 1 );
63   VERIFY( errorstate == ios_base::eofbit );
64
65   iss.str("\xbf\xde\xdd\xd5\xd4\xd5\xdb\xec\xdd\xd8\xda");
66   iterator_type is_it02(iss);
67   tm time02;
68   memset(&time02, -1, sizeof(tm));
69   errorstate = good;
70   tim_get.get_weekday(is_it02, end, iss, errorstate, &time02);
71   VERIFY( time02.tm_wday == 1 );
72   VERIFY( errorstate == ios_base::eofbit );
73
74 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 14)
75   iss.str("\xbf\xdd\x2e\xd5\xd4\xd5\xdb\xec\xdd\xd8\xda");
76 #else
77   iss.str("\xbf\xdd\xd4\xd5\xd4\xd5\xdb\xec\xdd\xd8\xda");
78 #endif
79   iterator_type is_it03(iss);
80   tm time03;
81   memset(&time03, -1, sizeof(tm));
82   errorstate = good;
83   iterator_type ret = tim_get.get_weekday(is_it03, end, iss,
84                                           errorstate, &time03);
85   VERIFY( time03.tm_wday == 1 );
86   VERIFY( errorstate == ios_base::goodbit );
87   VERIFY( *ret == '\xd5' );
88 }
89
90 int main()
91 {
92   test01();
93   return 0;
94 }