]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/money_get/get/char/22131.cc
Update copyright years in libstdc++-v3/
[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
aa118a03 3// Copyright (C) 2005-2014 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
44 bool test __attribute__((unused)) = true;
45
46 locale loc(locale::classic(), new My_money_io);
47
48 string buffer1("00#0#1");
49 string buffer2("000##1");
50
51 bool intl = false;
52
53 InIt iend1, iend2;
54 ios_base::iostate err1, err2;
55 string val1, val2;
56
57 const money_get<char,InIt>& mg =
58 use_facet<money_get<char, InIt> >(loc);
59
60 istringstream fmt1(buffer1);
61 fmt1.imbue(loc);
62 InIt ibeg1(fmt1);
63 err1 = ios_base::goodbit;
64 mg.get(ibeg1, iend1, intl, fmt1, err1, val1);
65 VERIFY( err1 == (ios_base::eofbit | ios_base::failbit) );
66 VERIFY( val1 == "1" );
67
68 istringstream fmt2(buffer2);
69 fmt2.imbue(loc);
70 InIt ibeg2(fmt2);
71 err2 = ios_base::goodbit;
72 mg.get(ibeg2, iend2, intl, fmt2, err2, val2);
73 VERIFY( err2 == ios_base::failbit );
74 VERIFY( *ibeg2 == '#' );
75 VERIFY( val2 == "" );
76}
77
78int main()
79{
80 test01();
81 return 0;
82}