1 // 2001-11-19 Benjamin Kosnik <bkoz@redhat.com>
3 // Copyright (C) 2001-2013 Free Software Foundation, Inc.
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 3, or (at your option)
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING3. If not see
18 // <http://www.gnu.org/licenses/>.
20 // 22.2.2.2.1 num_put members
24 #include <testsuite_hooks.h>
29 typedef ostreambuf_iterator
<char> iterator_type
;
31 bool test
__attribute__((unused
)) = true;
34 locale loc_c
= locale::classic();
36 // sanity check the data is correct.
43 unsigned long ul1
= 1294967294;
44 unsigned long ul2
= 0;
46 // cache the num_put facet
49 const num_put
<char>& np
= use_facet
<num_put
<char> >(oss
.getloc());
52 // bool, more twisted examples
55 oss
.setf(ios_base::right
, ios_base::adjustfield
);
56 np
.put(oss
.rdbuf(), oss
, '+', b0
);
58 VERIFY( result1
== "+++++++++++++++++++0" );
62 oss
.setf(ios_base::left
, ios_base::adjustfield
);
63 oss
.setf(ios_base::boolalpha
);
64 np
.put(oss
.rdbuf(), oss
, '+', b1
);
66 VERIFY( result2
== "true++++++++++++++++" );
68 // unsigned long, in a locale that does not group
72 np
.put(oss
.rdbuf(), oss
, '+', ul1
);
74 VERIFY( result1
== "1294967294" );
79 oss
.setf(ios_base::left
, ios_base::adjustfield
);
80 np
.put(oss
.rdbuf(), oss
, '+', ul2
);
82 VERIFY( result1
== "0+++++++++++++++++++" );