1// { dg-require-namedlocale "" }
2
3// 2001-08-23 Benjamin Kosnik  <bkoz@redhat.com>
4
5// Copyright (C) 2001, 2002, 2003, 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.
12
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.
17
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/>.
21
22// 22.2.6.3.1 moneypunct members
23
24#include <locale>
25#include <string>
26#include <testsuite_hooks.h>
27
28void test02()
29{
30  using namespace std;
31  typedef money_base::part part;
32  typedef money_base::pattern pattern;
33
34  bool test __attribute__((unused)) = true;
35
36  // basic construction
37  locale loc_c = locale::classic();
38  locale loc_de = locale("de_DE");
39
40  // cache the moneypunct facets
41  typedef moneypunct<char, true> __money_true;
42  typedef moneypunct<char, false> __money_false;
43  const __money_true& monp_c_t = use_facet<__money_true>(loc_c);
44  const __money_false& monp_c_f = use_facet<__money_false>(loc_c);
45  const __money_true& monp_de_t = use_facet<__money_true>(loc_de);
46
47  // quick sanity check for data.
48  char q1 = monp_c_t.decimal_point();
49  char q2 = monp_c_t.thousands_sep();
50  char q3 = monp_c_f.decimal_point();
51  char q4 = monp_c_f.thousands_sep();
52  VERIFY( q1 != char() );
53  VERIFY( q2 != char() );
54  VERIFY( q3 != char() );
55  VERIFY( q4 != char() );
56
57  // sanity check the data is correct.
58  char dp1 = monp_c_t.decimal_point();
59  char th1 = monp_c_t.thousands_sep();
60  string g1 = monp_c_t.grouping();
61  string cs1 = monp_c_t.curr_symbol();
62  string ps1 = monp_c_t.positive_sign();
63  string ns1 = monp_c_t.negative_sign();
64  int fd1 = monp_c_t.frac_digits();
65  pattern pos1 = monp_c_t.pos_format();
66  pattern neg1 = monp_c_t.neg_format();
67
68  char dp2 = monp_de_t.decimal_point();
69  char th2 = monp_de_t.thousands_sep();
70  string g2 = monp_de_t.grouping();
71  string cs2 = monp_de_t.curr_symbol();
72  string ps2 = monp_de_t.positive_sign();
73  string ns2 = monp_de_t.negative_sign();
74  int fd2 = monp_de_t.frac_digits();
75  pattern pos2 = monp_de_t.pos_format();
76  pattern neg2 = monp_de_t.neg_format();
77
78  VERIFY( dp1 != dp2 );
79  VERIFY( th1 != th2 );
80  VERIFY( g1 != g2 );
81  VERIFY( cs1 != cs2 );
82  //  VERIFY( ps1 != ps2 );
83  VERIFY( ns1 != ns2 );
84  VERIFY( fd1 != fd2 );
85  VERIFY(static_cast<part>(pos1.field[0]) != static_cast<part>(pos2.field[0]));
86  VERIFY(static_cast<part>(pos1.field[1]) != static_cast<part>(pos2.field[1]));
87  VERIFY(static_cast<part>(pos1.field[2]) != static_cast<part>(pos2.field[2]));
88  VERIFY(static_cast<part>(pos1.field[3]) != static_cast<part>(pos2.field[3]));
89
90  VERIFY(static_cast<part>(neg1.field[0]) != static_cast<part>(neg2.field[0]));
91  VERIFY(static_cast<part>(neg1.field[1]) != static_cast<part>(neg2.field[1]));
92  VERIFY(static_cast<part>(neg1.field[2]) != static_cast<part>(neg2.field[2]));
93  VERIFY(static_cast<part>(neg1.field[3]) != static_cast<part>(neg2.field[3]));
94}
95
96int main()
97{
98  test02();
99  return 0;
100}
101