2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / libstdc++-v3 / testsuite / 22_locale / num_get / get / wchar_t / 5.cc
blob618b74ceaa0d1fbc0d27f81b5e79af019b59ec91
1 // 2001-11-21 Benjamin Kosnik <bkoz@redhat.com>
3 // Copyright (C) 2001, 2002, 2003 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 2, 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 COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
21 // 22.2.2.1.1 num_get members
23 #include <locale>
24 #include <sstream>
25 #include <testsuite_hooks.h>
27 // Testing the correct parsing of grouped hexadecimals and octals.
28 void test05()
30 using namespace std;
32 bool test __attribute__((unused)) = true;
34 unsigned long ul;
36 wistringstream iss;
38 // A locale that expects grouping
39 locale loc_de = __gnu_test::try_named_locale("de_DE");
40 iss.imbue(loc_de);
42 const num_get<wchar_t>& ng = use_facet<num_get<wchar_t> >(iss.getloc());
43 const ios_base::iostate goodbit = ios_base::goodbit;
44 ios_base::iostate err = ios_base::goodbit;
46 iss.setf(ios::hex, ios::basefield);
47 iss.str(L"0xbf.fff.74c ");
48 err = goodbit;
49 ng.get(iss.rdbuf(), 0, iss, err, ul);
50 VERIFY( err == goodbit );
51 VERIFY( ul == 0xbffff74c );
53 iss.str(L"0Xf.fff ");
54 err = goodbit;
55 ng.get(iss.rdbuf(), 0, iss, err, ul);
56 VERIFY( err == goodbit );
57 VERIFY( ul == 0xffff );
59 iss.str(L"ffe ");
60 err = goodbit;
61 ng.get(iss.rdbuf(), 0, iss, err, ul);
62 VERIFY( err == goodbit );
63 VERIFY( ul == 0xffe );
65 iss.setf(ios::oct, ios::basefield);
66 iss.str(L"07.654.321 ");
67 err = goodbit;
68 ng.get(iss.rdbuf(), 0, iss, err, ul);
69 VERIFY( err == goodbit );
70 VERIFY( ul == 07654321 );
72 iss.str(L"07.777 ");
73 err = goodbit;
74 ng.get(iss.rdbuf(), 0, iss, err, ul);
75 VERIFY( err == goodbit );
76 VERIFY( ul == 07777 );
78 iss.str(L"776 ");
79 err = goodbit;
80 ng.get(iss.rdbuf(), 0, iss, err, ul);
81 VERIFY( err == goodbit );
82 VERIFY( ul == 0776 );
85 int main()
87 test05();
88 return 0;
92 // Kathleen Hannah, humanitarian, woman, art-thief