Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / libstdc++-v3 / testsuite / 27_io / objects / char / 5.cc
blobc31e23a4f4cd22220afee568076ff36e08e073d0
1 // 2003-04-26 Petur Runolfsson <peturr02@ru.is>
3 // Copyright (C) 2003, 2004 Free Software Foundation
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
8 // Free Software Foundation; either version 2, or (at your option)
9 // any later version.
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.
16 // You should have received a copy of the GNU General Public License along
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
19 // USA.
21 // 27.3 Standard iostream objects
23 // Check that standard streams can be used from constructors and
24 // destructors of static objects, provided that an instance of
25 // ios_base::Init has been constructed.
27 void init_standard_streams();
28 int use_standard_streams();
30 struct Strange
32 int i;
34 Strange()
36 init_standard_streams();
37 i = use_standard_streams();
40 ~Strange()
42 use_standard_streams();
43 init_standard_streams();
47 static Strange static_ob;
49 #include <testsuite_hooks.h>
50 #include <iostream>
52 void init_standard_streams()
54 std::ios_base::Init init;
57 int use_standard_streams()
59 std::cout << "Hello, world!" << std::endl;
60 std::cerr << "World, hello!" << std::endl;
62 int ret = std::ios_base::xalloc();
63 std::cin.iword(ret) = ret + 1;
64 std::cout.iword(ret) = ret + 2;
65 std::cerr.iword(ret) = ret + 3;
66 std::clog.iword(ret) = ret + 4;
67 return ret;
70 void test05()
72 bool test __attribute__((unused)) = true;
73 int i = static_ob.i;
75 VERIFY( std::cin.iword(i) == i + 1 );
76 VERIFY( std::cout.iword(i) == i + 2 );
77 VERIFY( std::cerr.iword(i) == i + 3 );
78 VERIFY( std::clog.iword(i) == i + 4 );
81 int main()
83 test05();
84 return 0;