]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/num_put/put/char/15565.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / num_put / put / char / 15565.cc
CommitLineData
a945c346 1// Copyright (C) 2004-2024 Free Software Foundation, Inc.
fea6ecb7
PC
2//
3// This file is part of the GNU ISO C++ Library. This library is free
4// software; you can redistribute it and/or modify it under the
5// terms of the GNU General Public License as published by the
748086b7 6// Free Software Foundation; either version 3, or (at your option)
fea6ecb7
PC
7// any later version.
8
9// This library is distributed in the hope that it will be useful,
10// but WITHOUT ANY WARRANTY; without even the implied warranty of
11// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12// GNU General Public License for more details.
13
14// You should have received a copy of the GNU General Public License along
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
fea6ecb7
PC
17
18// 22.2.2.2.1 num_put members
19
20#include <locale>
21#include <sstream>
22#include <testsuite_hooks.h>
23
24// libstdc++/15565
25void test01()
26{
27 using namespace std;
fea6ecb7
PC
28
29 // basic construction
30 locale loc_c = locale::classic();
31
32 // sanity check the data is correct.
33 const string empty;
34
35 // cache the num_put facet
36 ostringstream oss;
37 oss.imbue(loc_c);
38 const num_put<char>& np = use_facet<num_put<char> >(oss.getloc());
39
40 unsigned long ul1 = 42UL;
41 oss.str(empty);
42 oss.clear();
43 oss.setf(ios_base::showpos);
44 np.put(oss.rdbuf(), oss, ' ', ul1);
45 VERIFY( oss.str() == "42" );
46
47#ifdef _GLIBCXX_USE_LONG_LONG
48 unsigned long long ull1 = 31ULL;
49 oss.str(empty);
50 oss.clear();
51 oss.setf(ios_base::showpos);
52 np.put(oss.rdbuf(), oss, ' ', ull1);
53 VERIFY( oss.str() == "31" );
54#endif
55}
56
57int main()
58{
59 test01();
60 return 0;
61}