]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/money_get/get/char/22131.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / money_get / get / char / 22131.cc
CommitLineData
d04e9b7f
PC
1// 2005-06-28 Paolo Carlini <pcarlini@suse.de>
2
83ffe9cd 3// Copyright (C) 2005-2023 Free Software Foundation, Inc.
d04e9b7f
PC
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)
d04e9b7f
PC
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/>.
d04e9b7f
PC
19
20// 22.2.6.1.1 money_get members
21
22#include <locale>
23#include <sstream>
24#include <testsuite_hooks.h>
25
26struct My_money_io : public std::moneypunct<char, false>
27{
28 std::string do_grouping() const { return "\1"; }
29 char_type do_thousands_sep() const { return '#'; }
30
31 pattern do_neg_format() const
32 {
33 pattern pat = { { symbol, none, sign, value } };
34 return pat;
35 }
36};
37
38// libstdc++/22131
39void test01()
40{
41 using namespace std;
42 typedef istreambuf_iterator<char> InIt;
43
d04e9b7f
PC
44 locale loc(locale::classic(), new My_money_io);
45
46 string buffer1("00#0#1");
47 string buffer2("000##1");
48
49 bool intl = false;
50
51 InIt iend1, iend2;
52 ios_base::iostate err1, err2;
53 string val1, val2;
54
55 const money_get<char,InIt>& mg =
56 use_facet<money_get<char, InIt> >(loc);
57
58 istringstream fmt1(buffer1);
59 fmt1.imbue(loc);
60 InIt ibeg1(fmt1);
61 err1 = ios_base::goodbit;
62 mg.get(ibeg1, iend1, intl, fmt1, err1, val1);
63 VERIFY( err1 == (ios_base::eofbit | ios_base::failbit) );
64 VERIFY( val1 == "1" );
65
66 istringstream fmt2(buffer2);
67 fmt2.imbue(loc);
68 InIt ibeg2(fmt2);
69 err2 = ios_base::goodbit;
c3202623 70 ibeg2 = mg.get(ibeg2, iend2, intl, fmt2, err2, val2);
d04e9b7f
PC
71 VERIFY( err2 == ios_base::failbit );
72 VERIFY( *ibeg2 == '#' );
73 VERIFY( val2 == "" );
74}
75
76int main()
77{
78 test01();
79 return 0;
80}