Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_weekday / char / 38081-1.cc
blob7316cc454d00ffc3149010a3929158e37941bf73
1 // { dg-require-namedlocale "ru_RU.ISO-8859-5" }
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.
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.
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/>.
20 // 22.2.5.1.1 time_get members
22 #include <locale>
23 #include <sstream>
24 #include <cstring>
25 #include <testsuite_hooks.h>
27 // libstdc++/38081
28 void test01()
30 using namespace std;
31 bool test __attribute__((unused)) = true;
33 typedef istreambuf_iterator<char> iterator_type;
35 // basic construction
36 locale loc("ru_RU.ISO-8859-5");
38 // create an ostream-derived object, cache the time_get facet
39 iterator_type end;
41 istringstream iss;
42 iss.imbue(loc);
43 const time_get<char>& tim_get = use_facet<time_get<char> >(iss.getloc());
45 const ios_base::iostate good = ios_base::goodbit;
46 ios_base::iostate errorstate = good;
48 // iter_type
49 // get_weekday(iter_type, iter_type, ios_base&,
50 // ios_base::iostate&, tm*) const
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 );
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 );
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' );
82 int main()
84 test01();
85 return 0;