Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / libstdc++-v3 / testsuite / 22_locale / money_get / get / wchar_t / 18.cc
blobc1226ad7a161c002220e1e2860c67be11d51e295
1 // { dg-require-namedlocale "en_HK" }
3 // 2004-03-15 Paolo Carlini <pcarlini@suse.de>
5 // Copyright (C) 2004, 2005, 2009 Free Software Foundation
6 //
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
11 // any later version.
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING3. If not see
20 // <http://www.gnu.org/licenses/>.
22 // 22.2.6.1.1 money_get members
24 #include <locale>
25 #include <sstream>
26 #include <testsuite_hooks.h>
28 // If (str.flags() & str.showbase) is false, the currency symbol is optional,
29 // but, if found, must be consumed entirely.
30 void test01()
32 using namespace std;
33 typedef istreambuf_iterator<wchar_t> iterator_type;
35 bool test __attribute__((unused)) = true;
37 // basic construction
38 locale loc_c = locale::classic();
39 locale loc_hk = locale("en_HK");
40 VERIFY( loc_c != loc_hk );
42 iterator_type end, end01, end02;
43 wistringstream iss;
44 iss.imbue(loc_hk);
45 // cache the money_get facet
46 const money_get<wchar_t>& mon_get =
47 use_facet<money_get<wchar_t> >(iss.getloc());
49 iss.str(L"HK7,200,000,000.00");
50 iterator_type is_it01(iss);
51 wstring result01;
52 ios_base::iostate err01 = ios_base::goodbit;
53 end01 = mon_get.get(is_it01, end, false, iss, err01, result01);
54 VERIFY( err01 == ios_base::failbit );
55 VERIFY( *end01 == L'7' );
57 iss.str(L"(HK100,000,000,000.00)");
58 iterator_type is_it02(iss);
59 wstring result02;
60 ios_base::iostate err02 = ios_base::goodbit;
61 end02 = mon_get.get(is_it02, end, true, iss, err02, result02);
62 VERIFY( err02 == ios_base::failbit );
63 VERIFY( *end02 == L'1' );
66 int main()
68 test01();
69 return 0;