]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/num_put/put/wchar_t/3.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / num_put / put / wchar_t / 3.cc
CommitLineData
be803e41 1// { dg-require-namedlocale "en_HK.ISO8859-1" }
e590fca1 2
2f14cd74 3// 2001-11-19 Benjamin Kosnik <bkoz@redhat.com>
4
fbd26352 5// Copyright (C) 2001-2019 Free Software Foundation, Inc.
2f14cd74 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
6bc9506f 10// Free Software Foundation; either version 3, or (at your option)
2f14cd74 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
6bc9506f 19// with this library; see the file COPYING3. If not see
20// <http://www.gnu.org/licenses/>.
2f14cd74 21
22// 22.2.2.2.1 num_put members
23
24#include <locale>
25#include <sstream>
26#include <testsuite_hooks.h>
27
28void test03()
29{
30 using namespace std;
31 typedef ostreambuf_iterator<wchar_t> iterator_type;
32
2f14cd74 33 // basic construction
34 locale loc_c = locale::classic();
be803e41 35 locale loc_hk = locale(ISO_8859(1,en_HK));
b2e9d69f 36 VERIFY( loc_c != loc_hk );
2f14cd74 37
2f14cd74 38 // sanity check the data is correct.
39 const wstring empty;
40 wstring result1;
41 wstring result2;
2f14cd74 42
2f14cd74 43 long l1 = 2147483647;
44 long l2 = -2147483647;
2f14cd74 45
46 // cache the num_put facet
47 wostringstream oss;
48 oss.imbue(loc_hk);
49 const num_put<wchar_t>& np = use_facet<num_put<wchar_t> >(oss.getloc());
50
51 // HK
52 // long, in a locale that expects grouping
53 oss.str(empty);
54 oss.clear();
2c64db92 55 np.put(oss.rdbuf(), oss, L'+', l1);
2f14cd74 56 result1 = oss.str();
57 VERIFY( result1 == L"2,147,483,647" );
58
59 oss.str(empty);
60 oss.clear();
61 oss.width(20);
62 oss.setf(ios_base::left, ios_base::adjustfield);
2c64db92 63 np.put(oss.rdbuf(), oss, L'+', l2);
2f14cd74 64 result1 = oss.str();
65 VERIFY( result1 == L"-2,147,483,647++++++" );
66}
67
68int main()
69{
70 test03();
71 return 0;
72}