]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_ostream/ends/char/2.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_ostream / ends / char / 2.cc
CommitLineData
b2dad0e3
BK
1// 1999-07-22 bkoz
2
83ffe9cd 3// Copyright (C) 1994-2023 Free Software Foundation, Inc.
b2dad0e3
BK
4//
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
748086b7 8// Free Software Foundation; either version 3, or (at your option)
b2dad0e3
BK
9// any later version.
10
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.
15
16// You should have received a copy of the GNU General Public License along
748086b7
JJ
17// with this library; see the file COPYING3. If not see
18// <http://www.gnu.org/licenses/>.
b2dad0e3
BK
19
20// 27.6.2.7 standard basic_ostream manipulators
21
4a2f4b12 22#include <ostream>
b2dad0e3 23#include <sstream>
fe413112 24#include <testsuite_hooks.h>
b2dad0e3 25
4a2f4b12 26// based vaguely on this:
a9ab8db1 27// http://gcc.gnu.org/ml/libstdc++/2000-q2/msg00109.html
23cac885 28void test02()
4a2f4b12
BK
29{
30 using namespace std;
31 typedef ostringstream::int_type int_type;
32
4a2f4b12
BK
33 ostringstream osst_01;
34 const string str_00("herbie_hancock");
35 int_type len1 = str_00.size();
36 osst_01 << str_00;
11f10e6b 37 VERIFY( static_cast<int_type>(osst_01.str().size()) == len1 );
4a2f4b12
BK
38
39 osst_01 << ends;
40
41 const string str_01("speak like a child");
42 int_type len2 = str_01.size();
43 osst_01 << str_01;
44 int_type len3 = osst_01.str().size();
aa1b2f7d
BV
45 VERIFY( len1 < len3 );
46 VERIFY( len3 == len1 + len2 + 1 );
4a2f4b12
BK
47
48 osst_01 << ends;
49
50 const string str_02("+ inventions and dimensions");
51 int_type len4 = str_02.size();
52 osst_01 << str_02;
53 int_type len5 = osst_01.str().size();
aa1b2f7d
BV
54 VERIFY( len3 < len5 );
55 VERIFY( len5 == len3 + len4 + 1 );
4a2f4b12
BK
56}
57
b2dad0e3
BK
58int main()
59{
866c9e66 60 test02();
04d930e6 61 return 0;
b2dad0e3 62}