]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/time_get/get_weekday/char/38081-1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / time_get / get_weekday / char / 38081-1.cc
CommitLineData
be803e41 1// { dg-require-namedlocale "ru_RU.ISO8859-5" }
0444dd11 2
f1717362 3// Copyright (C) 2010-2016 Free Software Foundation, Inc.
0444dd11 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
28void test01()
29{
30 using namespace std;
31 bool test __attribute__((unused)) = true;
32
33 typedef istreambuf_iterator<char> iterator_type;
34
35 // basic construction
be803e41 36 locale loc(ISO_8859(5,ru_RU));
0444dd11 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
0f9e4c93 52#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 14)
a8cbacbf 53# if __GLIBC__ > 2 || __GLIBC_MINOR__ >= 17
54 iss.str("\xbf\xdd");
55# else
0f9e4c93 56 iss.str("\xbf\xdd\x2e");
a8cbacbf 57# endif
0f9e4c93 58#else
0444dd11 59 iss.str("\xbf\xdd\xd4");
0f9e4c93 60#endif
0444dd11 61 iterator_type is_it01(iss);
62 tm time01;
63 memset(&time01, -1, sizeof(tm));
64 errorstate = good;
65 tim_get.get_weekday(is_it01, end, iss, errorstate, &time01);
66 VERIFY( time01.tm_wday == 1 );
67 VERIFY( errorstate == ios_base::eofbit );
68
69 iss.str("\xbf\xde\xdd\xd5\xd4\xd5\xdb\xec\xdd\xd8\xda");
70 iterator_type is_it02(iss);
71 tm time02;
72 memset(&time02, -1, sizeof(tm));
73 errorstate = good;
74 tim_get.get_weekday(is_it02, end, iss, errorstate, &time02);
75 VERIFY( time02.tm_wday == 1 );
76 VERIFY( errorstate == ios_base::eofbit );
77
0f9e4c93 78#if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 14)
a8cbacbf 79# if __GLIBC__ > 2 || __GLIBC_MINOR__ >= 17
80 iss.str("\xbf\xdd\xd5\xd4\xd5\xdb\xec\xdd\xd8\xda");
81# else
0f9e4c93 82 iss.str("\xbf\xdd\x2e\xd5\xd4\xd5\xdb\xec\xdd\xd8\xda");
a8cbacbf 83# endif
0f9e4c93 84#else
0444dd11 85 iss.str("\xbf\xdd\xd4\xd5\xd4\xd5\xdb\xec\xdd\xd8\xda");
0f9e4c93 86#endif
0444dd11 87 iterator_type is_it03(iss);
88 tm time03;
89 memset(&time03, -1, sizeof(tm));
90 errorstate = good;
91 iterator_type ret = tim_get.get_weekday(is_it03, end, iss,
92 errorstate, &time03);
93 VERIFY( time03.tm_wday == 1 );
94 VERIFY( errorstate == ios_base::goodbit );
95 VERIFY( *ret == '\xd5' );
96}
97
98int main()
99{
100 test01();
101 return 0;
102}