]> git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/27_io/objects/wchar_t/1.cc
Reshuffle 27_io testsuite.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / objects / wchar_t / 1.cc
1 // 2000-08-02 bkoz
2
3 // Copyright (C) 2000, 2003 Free Software Foundation, Inc.
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.
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
17 // with this library; see the file COPYING. If not, write to the Free
18 // Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20
21 // Include all the headers except for iostream.
22 #include <algorithm>
23 #include <bitset>
24 #include <complex>
25 #include <deque>
26 #include <exception>
27 #include <fstream>
28 #include <functional>
29 #include <iomanip>
30 #include <ios>
31 #include <iosfwd>
32 #include <istream>
33 #include <iterator>
34 #include <limits>
35 #include <list>
36 #include <locale>
37 #include <map>
38 #include <memory>
39 #include <new>
40 #include <numeric>
41 #include <ostream>
42 #include <queue>
43 #include <set>
44 #include <sstream>
45 #include <stack>
46 #include <stdexcept>
47 #include <streambuf>
48 #include <string>
49 #include <typeinfo>
50 #include <utility>
51 #include <valarray>
52 #include <vector>
53 #include <cassert>
54 #include <cctype>
55 #include <cerrno>
56 #include <cfloat>
57 #include <ciso646>
58 #include <climits>
59 #include <clocale>
60 #include <cmath>
61 #include <csetjmp>
62 #include <csignal>
63 #include <cstdarg>
64 #include <cstddef>
65 #include <cstdio>
66 #include <cstdlib>
67 #include <cstring>
68 #include <ctime>
69 #include <cwchar>
70 #include <cwctype>
71 #include <testsuite_hooks.h>
72
73 // Include iostream last, just to make is as difficult as possible to
74 // properly initialize the standard iostream objects.
75 #include <iostream>
76
77 // Make sure all the standard streams are defined.
78 void
79 test01()
80 {
81 bool test = true;
82
83 wchar_t array2[20];
84 typedef std::wios::traits_type wtraits_type;
85 wtraits_type::int_type wi = 15;
86 wtraits_type::copy(array2, L"testing istream", wi);
87 std::wcout << L"testing wcout" << std::endl;
88 std::wcerr << L"testing wcerr" << std::endl;
89 VERIFY( std::wcerr.flags() & std::ios_base::unitbuf );
90 std::wclog << L"testing wclog" << std::endl;
91 // std::wcin >> array2; // requires somebody to type something in.
92 VERIFY( std::wcin.tie() == &std::wcout );
93 }
94
95
96 int
97 main()
98 {
99 test01();
100 return 0;
101 }