2016-10-16 Paolo Carlini <paolo.carlini@oracle.com>
[official-gcc.git] / libstdc++-v3 / testsuite / 22_locale / moneypunct / members / char / 2.cc
blobdb2298dc460a9a7624e1799780e744a4bd1ee025
1 // { dg-require-namedlocale "de_DE.ISO8859-15" }
3 // 2001-08-23 Benjamin Kosnik <bkoz@redhat.com>
5 // Copyright (C) 2001-2016 Free Software Foundation, Inc.
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.3.1 moneypunct members
24 #include <locale>
25 #include <string>
26 #include <testsuite_hooks.h>
28 void test02()
30 using namespace std;
31 typedef money_base::part part;
32 typedef money_base::pattern pattern;
34 // basic construction
35 locale loc_c = locale::classic();
36 locale loc_de = locale(ISO_8859(15,de_DE));
38 // cache the moneypunct facets
39 typedef moneypunct<char, true> __money_true;
40 typedef moneypunct<char, false> __money_false;
41 const __money_true& monp_c_t = use_facet<__money_true>(loc_c);
42 const __money_false& monp_c_f = use_facet<__money_false>(loc_c);
43 const __money_true& monp_de_t = use_facet<__money_true>(loc_de);
45 // quick sanity check for data.
46 char q1 = monp_c_t.decimal_point();
47 char q2 = monp_c_t.thousands_sep();
48 char q3 = monp_c_f.decimal_point();
49 char q4 = monp_c_f.thousands_sep();
50 VERIFY( q1 != char() );
51 VERIFY( q2 != char() );
52 VERIFY( q3 != char() );
53 VERIFY( q4 != char() );
55 // sanity check the data is correct.
56 char dp1 = monp_c_t.decimal_point();
57 char th1 = monp_c_t.thousands_sep();
58 string g1 = monp_c_t.grouping();
59 string cs1 = monp_c_t.curr_symbol();
60 string ps1 = monp_c_t.positive_sign();
61 string ns1 = monp_c_t.negative_sign();
62 int fd1 = monp_c_t.frac_digits();
63 pattern pos1 = monp_c_t.pos_format();
64 pattern neg1 = monp_c_t.neg_format();
66 char dp2 = monp_de_t.decimal_point();
67 char th2 = monp_de_t.thousands_sep();
68 string g2 = monp_de_t.grouping();
69 string cs2 = monp_de_t.curr_symbol();
70 string ps2 = monp_de_t.positive_sign();
71 string ns2 = monp_de_t.negative_sign();
72 int fd2 = monp_de_t.frac_digits();
73 pattern pos2 = monp_de_t.pos_format();
74 pattern neg2 = monp_de_t.neg_format();
76 VERIFY( dp1 != dp2 );
77 VERIFY( th1 != th2 );
78 VERIFY( g1 != g2 );
79 VERIFY( cs1 != cs2 );
80 // VERIFY( ps1 != ps2 );
81 VERIFY( ns1 != ns2 );
82 VERIFY( fd1 != fd2 );
83 VERIFY(static_cast<part>(pos1.field[0]) != static_cast<part>(pos2.field[0]));
84 VERIFY(static_cast<part>(pos1.field[1]) != static_cast<part>(pos2.field[1]));
85 VERIFY(static_cast<part>(pos1.field[2]) != static_cast<part>(pos2.field[2]));
86 VERIFY(static_cast<part>(pos1.field[3]) != static_cast<part>(pos2.field[3]));
88 VERIFY(static_cast<part>(neg1.field[0]) != static_cast<part>(neg2.field[0]));
89 VERIFY(static_cast<part>(neg1.field[1]) != static_cast<part>(neg2.field[1]));
90 VERIFY(static_cast<part>(neg1.field[2]) != static_cast<part>(neg2.field[2]));
91 VERIFY(static_cast<part>(neg1.field[3]) != static_cast<part>(neg2.field[3]));
94 int main()
96 test02();
97 return 0;