]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/num_get/get/wchar_t/1.cc
re PR testsuite/39696 (gcc.dg/tree-ssa/ssa-ccp-25.c scan-tree-dump doesn't work on...
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / num_get / get / wchar_t / 1.cc
CommitLineData
f63a8495
PC
1// { dg-require-namedlocale "" }
2
5f8d36fe
BK
3// 2001-11-21 Benjamin Kosnik <bkoz@redhat.com>
4
90737ab7
PC
5// Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007
6// Free Software Foundation
5f8d36fe
BK
7//
8// This file is part of the GNU ISO C++ Library. This library is free
9// software; you can redistribute it and/or modify it under the
10// terms of the GNU General Public License as published by the
11// Free Software Foundation; either version 2, or (at your option)
12// any later version.
13
14// This library is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18
19// You should have received a copy of the GNU General Public License along
20// with this library; see the file COPYING. If not, write to the Free
83f51799 21// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
5f8d36fe
BK
22// USA.
23
24// 22.2.2.1.1 num_get members
25
26#include <locale>
27#include <sstream>
28#include <testsuite_hooks.h>
29
30void test01()
31{
32 using namespace std;
33 typedef istreambuf_iterator<wchar_t> iterator_type;
34
11f10e6b 35 bool test __attribute__((unused)) = true;
5f8d36fe
BK
36
37 // basic construction
38 locale loc_c = locale::classic();
f63a8495 39 locale loc_de = locale("de_DE");
5f8d36fe 40 VERIFY( loc_c != loc_de );
5f8d36fe 41
5f8d36fe
BK
42 // sanity check the data is correct.
43 const wstring empty;
5f8d36fe
BK
44
45 bool b1 = true;
46 bool b0 = false;
5f8d36fe 47 unsigned long ul1 = 1294967294;
5f8d36fe
BK
48 unsigned long ul;
49 double d1 = 1.02345e+308;
50 double d2 = 3.15e-308;
51 double d;
52 long double ld1 = 6.630025e+4;
5f8d36fe 53 long double ld;
54e2e812 54 void* v = 0;
5f8d36fe
BK
55
56 // cache the num_get facet
57 wistringstream iss;
58 iss.imbue(loc_de);
59 const num_get<wchar_t>& ng = use_facet<num_get<wchar_t> >(iss.getloc());
60 const ios_base::iostate goodbit = ios_base::goodbit;
61 const ios_base::iostate eofbit = ios_base::eofbit;
62 ios_base::iostate err = ios_base::goodbit;
63
64 // bool, simple
65 iss.str(L"1");
66 iterator_type os_it00 = iss.rdbuf();
67 iterator_type os_it01 = ng.get(os_it00, 0, iss, err, b1);
68 VERIFY( b1 == true );
69 VERIFY( err & ios_base::eofbit );
70
71 iss.str(L"0");
72 err = goodbit;
73 ng.get(iss.rdbuf(), 0, iss, err, b0);
74 VERIFY( b0 == false );
75 VERIFY( err & eofbit );
76
77 // ... and one that does
78 iss.str(L"1.294.967.294+++++++");
79 iss.clear();
80 iss.width(20);
81 iss.setf(ios_base::left, ios_base::adjustfield);
82 err = goodbit;
83 ng.get(iss.rdbuf(), 0, iss, err, ul);
84 VERIFY( ul == ul1 );
85 VERIFY( err == goodbit );
86
87 iss.str(L"+1,02345e+308");
88 iss.clear();
89 iss.width(20);
90 iss.setf(ios_base::right, ios_base::adjustfield);
91 iss.setf(ios_base::scientific, ios_base::floatfield);
92 err = goodbit;
93 ng.get(iss.rdbuf(), 0, iss, err, d);
94 VERIFY( d == d1 );
95 VERIFY( err == eofbit );
96
97 iss.str(L"3,15E-308 ");
98 iss.clear();
99 iss.width(20);
100 iss.precision(10);
101 iss.setf(ios_base::right, ios_base::adjustfield);
102 iss.setf(ios_base::scientific, ios_base::floatfield);
103 iss.setf(ios_base::uppercase);
104 err = goodbit;
105 ng.get(iss.rdbuf(), 0, iss, err, d);
106 VERIFY( d == d2 );
107 VERIFY( err == goodbit );
108
109 // long double
110 iss.str(L"6,630025e+4");
111 iss.clear();
112 err = goodbit;
113 ng.get(iss.rdbuf(), 0, iss, err, ld);
114 VERIFY( ld == ld1 );
115 VERIFY( err == eofbit );
116
117 iss.str(L"0 ");
118 iss.clear();
119 iss.precision(0);
120 iss.setf(ios_base::fixed, ios_base::floatfield);
121 err = goodbit;
122 ng.get(iss.rdbuf(), 0, iss, err, ld);
123 VERIFY( ld == 0 );
124 VERIFY( err == goodbit );
125
90737ab7 126 // void*
5f8d36fe
BK
127 iss.str(L"0xbffff74c,");
128 iss.clear();
129 err = goodbit;
130 ng.get(iss.rdbuf(), 0, iss, err, v);
90737ab7 131 VERIFY( v != 0 );
5f8d36fe
BK
132 VERIFY( err == goodbit );
133
3d7c150e 134#ifdef _GLIBCXX_USE_LONG_LONG
5f8d36fe 135 long long ll1 = 9223372036854775807LL;
5f8d36fe
BK
136 long long ll;
137
138 iss.str(L"9.223.372.036.854.775.807");
139 iss.clear();
140 err = goodbit;
141 ng.get(iss.rdbuf(), 0, iss, err, ll);
142 VERIFY( ll == ll1 );
143 VERIFY( err == eofbit );
144#endif
145}
146
147int main()
148{
149 test01();
150 return 0;
151}
152
153
154// Kathleen Hannah, humanitarian, woman, art-thief