]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/moneypunct/members/char/1.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / moneypunct / members / char / 1.cc
CommitLineData
5f8d36fe
BK
1// 2001-08-23 Benjamin Kosnik <bkoz@redhat.com>
2
7adcbafe 3// Copyright (C) 2001-2022 Free Software Foundation, Inc.
5f8d36fe
BK
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
5f8d36fe
BK
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
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
5f8d36fe
BK
19
20// 22.2.6.3.1 moneypunct members
21
22#include <locale>
23#include <string>
24#include <testsuite_hooks.h>
25
26void test01()
27{
28 using namespace std;
29 typedef money_base::part part;
30 typedef money_base::pattern pattern;
31
5f8d36fe
BK
32 // basic construction
33 locale loc_c = locale::classic();
34
35 // cache the moneypunct facets
36 typedef moneypunct<char, true> __money_true;
37 typedef moneypunct<char, false> __money_false;
38 const __money_true& monp_c_t = use_facet<__money_true>(loc_c);
39 const __money_false& monp_c_f = use_facet<__money_false>(loc_c);
40
41 // quick sanity check for data.
42 char q1 = monp_c_t.decimal_point();
43 char q2 = monp_c_t.thousands_sep();
44 char q3 = monp_c_f.decimal_point();
45 char q4 = monp_c_f.thousands_sep();
46 string g1 = monp_c_t.grouping();
47 string g2 = monp_c_f.grouping();
48 string cs1 = monp_c_t.curr_symbol();
49 string cs2 = monp_c_f.curr_symbol();
50 string ps1 = monp_c_t.positive_sign();
51 string ns1 = monp_c_t.negative_sign();
52 string ps2 = monp_c_f.positive_sign();
53 string ns2 = monp_c_f.negative_sign();
54 int fd1 = monp_c_t.frac_digits();
55 int fd2 = monp_c_f.frac_digits();
56 pattern pos1 = monp_c_t.pos_format();
57 pattern neg1 = monp_c_t.neg_format();
58 pattern pos2 = monp_c_f.pos_format();
59 pattern neg2 = monp_c_f.neg_format();
567d4027
PC
60 neg1 = neg1;
61 neg2 = neg2;
5f8d36fe
BK
62
63 VERIFY( q1 == '.' );
64 VERIFY( q3 == '.' );
65 VERIFY( q2 == ',' );
66 VERIFY( q4 == ',' );
67 VERIFY( g1 == "" );
68 VERIFY( g2 == "" );
69 VERIFY( cs1 == "" );
70 VERIFY( cs2 == "" );
71 VERIFY( ps1 == "" );
72 VERIFY( ps2 == "" );
73 VERIFY( ns1 == "" );
74 VERIFY( ns2 == "" );
75 VERIFY( fd1 == 0 );
76 VERIFY( fd2 == 0 );
77
78 VERIFY(static_cast<part>(pos1.field[0]) == static_cast<part>(pos2.field[0]));
79 VERIFY(static_cast<part>(pos1.field[1]) == static_cast<part>(pos2.field[1]));
80 VERIFY(static_cast<part>(pos1.field[2]) == static_cast<part>(pos2.field[2]));
81 VERIFY(static_cast<part>(pos1.field[3]) == static_cast<part>(pos2.field[3]));
82
83#if 0
84 VERIFY( pos1[0] == money_base::_S_default_pattern[0] );
85 VERIFY( pos1[1] == money_base::_S_default_pattern[1] );
86 VERIFY( pos1[2] == money_base::_S_default_pattern[2] );
87 VERIFY( pos1[3] == money_base::_S_default_pattern[3] );
88 VERIFY( pos2 == money_base::_S_default_pattern );
89 VERIFY( neg1 == money_base::_S_default_pattern );
90 VERIFY( neg2 == money_base::_S_default_pattern );
91#endif
92}
93
94int main()
95{
96 test01();
97 return 0;
98}