]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/22_locale/num_put/put/wchar_t/38196.cc
re PR testsuite/39696 (gcc.dg/tree-ssa/ssa-ccp-25.c scan-tree-dump doesn't work on...
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 22_locale / num_put / put / wchar_t / 38196.cc
CommitLineData
7391b597
PC
1// Copyright (C) 2008 Free Software Foundation
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
6// Free Software Foundation; either version 2, or (at your option)
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
15// with this library; see the file COPYING. If not, write to the Free
16// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
17// USA.
18
19// 22.2.2.2.1 num_put members
20
21#include <locale>
22#include <sstream>
23#include <testsuite_hooks.h>
24
25class my_punct : public std::numpunct<wchar_t>
26{
27protected:
28 std::wstring do_falsename() const { return L"-no-"; }
29};
30
31// libstdc++/38196
32void test01()
33{
34 bool test __attribute__((unused)) = true;
35 using namespace std;
36
37 wostringstream oss1, oss2, oss3, oss4;
38 wstring result1, result2, result3, result4;
39
40 oss1.imbue(locale(oss1.getloc(), new my_punct));
41 oss2.imbue(locale(oss2.getloc(), new my_punct));
42 oss3.imbue(locale(oss3.getloc(), new my_punct));
43 oss4.imbue(locale(oss4.getloc(), new my_punct));
44 const num_put<wchar_t>& ng1 = use_facet<num_put<wchar_t> >(oss1.getloc());
45 const num_put<wchar_t>& ng2 = use_facet<num_put<wchar_t> >(oss2.getloc());
46 const num_put<wchar_t>& ng3 = use_facet<num_put<wchar_t> >(oss3.getloc());
47 const num_put<wchar_t>& ng4 = use_facet<num_put<wchar_t> >(oss4.getloc());
48
49 oss1.width(6);
50 oss1.setf(ios_base::boolalpha);
51 ng1.put(oss1.rdbuf(), oss1, L'*', false);
52 result1 = oss1.str();
53 VERIFY( result1 == L"**-no-" );
54
55 oss2.width(6);
56 oss2.setf(ios_base::right, ios_base::adjustfield);
57 oss2.setf(ios_base::boolalpha);
58 ng2.put(oss2.rdbuf(), oss2, L'*', false);
59 result2 = oss2.str();
60 VERIFY( result2 == L"**-no-" );
61
62 oss3.width(6);
63 oss3.setf(ios_base::internal, ios_base::adjustfield);
64 oss3.setf(ios_base::boolalpha);
65 ng3.put(oss3.rdbuf(), oss3, L'*', false);
66 result3 = oss3.str();
67 VERIFY( result3 == L"**-no-" );
68
69 oss4.width(6);
70 oss4.setf(ios_base::left, ios_base::adjustfield);
71 oss4.setf(ios_base::boolalpha);
72 ng4.put(oss4.rdbuf(), oss4, L'*', false);
73 result4 = oss4.str();
74 VERIFY( result4 == L"-no-**" );
75}
76
77int main()
78{
79 test01();
80 return 0;
81}