]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/basic_ostream/inserters_character/wchar_t/3.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_ostream / inserters_character / wchar_t / 3.cc
1 // Copyright (C) 2005-2019 Free Software Foundation, Inc.
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 3, 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 COPYING3. If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // 27.6.2.5.4 basic_ostream character inserters
19
20 #include <string>
21 #include <ostream>
22 #include <sstream>
23 #include <testsuite_hooks.h>
24
25 // width() != zero
26 // right
27 void test03(void)
28 {
29 std::wstring tmp;
30
31 std::wstring str01 = L"";
32 std::wostringstream oss01;
33 oss01.width(5);
34 oss01.fill(L'0');
35 oss01.flags(std::ios_base::right);
36 oss01 << str01;
37 tmp = oss01.str();
38 VERIFY( tmp == L"00000" );
39
40 std::wstring str02 = L"1";
41 std::wostringstream oss02;
42 oss02.width(5);
43 oss02.fill(L'0');
44 oss02.flags(std::ios_base::right);
45 oss02 << str02;
46 tmp = oss02.str();
47 VERIFY( tmp == L"00001" );
48
49 std::wstring str03 = L"909909";
50 std::wostringstream oss03;
51 oss03.width(5);
52 oss03.fill(L'0');
53 oss03.flags(std::ios_base::right);
54 oss03 << str03;
55 tmp = oss03.str();
56 VERIFY( tmp == L"909909" );
57 }
58
59 int main()
60 {
61 test03();
62 return 0;
63 }