OpenCores
URL https://opencores.org/ocsvn/scarts/scarts/trunk

Subversion Repositories scarts

[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [libstdc++-v3/] [testsuite/] [22_locale/] [money_get/] [get/] [char/] [22131.cc] - Blame information for rev 19

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 19 jlechner
// 2005-06-28  Paolo Carlini  <pcarlini@suse.de>
2
 
3
// Copyright (C) 2005 Free Software Foundation
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
8
// Free Software Foundation; either version 2, or (at your option)
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
17
// with this library; see the file COPYING.  If not, write to the Free
18
// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19
// USA.
20
 
21
// 22.2.6.1.1 money_get members
22
 
23
#include <locale>
24
#include <sstream>
25
#include <testsuite_hooks.h>
26
 
27
struct My_money_io : public std::moneypunct<char, false>
28
{
29
  std::string do_grouping() const { return "\1"; }
30
  char_type do_thousands_sep() const { return '#'; }
31
 
32
  pattern do_neg_format() const
33
  {
34
    pattern pat = { { symbol, none, sign, value } };
35
    return pat;
36
  }
37
};
38
 
39
// libstdc++/22131
40
void test01()
41
{
42
  using namespace std;
43
  typedef istreambuf_iterator<char> InIt;
44
 
45
  bool test __attribute__((unused)) = true;
46
 
47
  locale loc(locale::classic(), new My_money_io);
48
 
49
  string buffer1("00#0#1");
50
  string buffer2("000##1");
51
 
52
  bool intl = false;
53
 
54
  InIt iend1, iend2;
55
  ios_base::iostate err1, err2;
56
  string val1, val2;
57
 
58
  const money_get<char,InIt>& mg =
59
    use_facet<money_get<char, InIt> >(loc);
60
 
61
  istringstream fmt1(buffer1);
62
  fmt1.imbue(loc);
63
  InIt ibeg1(fmt1);
64
  err1 = ios_base::goodbit;
65
  mg.get(ibeg1, iend1, intl, fmt1, err1, val1);
66
  VERIFY( err1 == (ios_base::eofbit | ios_base::failbit) );
67
  VERIFY( val1 == "1" );
68
 
69
  istringstream fmt2(buffer2);
70
  fmt2.imbue(loc);
71
  InIt ibeg2(fmt2);
72
  err2 = ios_base::goodbit;
73
  mg.get(ibeg2, iend2, intl, fmt2, err2, val2);
74
  VERIFY( err2 == ios_base::failbit );
75
  VERIFY( *ibeg2 == '#' );
76
  VERIFY( val2 == "" );
77
}
78
 
79
int main()
80
{
81
  test01();
82
  return 0;
83
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.