]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_ios/copyfmt/char/1.cc
c++config (std::size_t, [...]): Provide typedefs.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_ios / copyfmt / char / 1.cc
CommitLineData
23cac885 1// 1999-09-20 bkoz
afb6c265 2
8fc81078 3// Copyright (C) 1999, 2003, 2009, 2010 Free Software Foundation, Inc.
afb6c265
PC
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)
afb6c265
PC
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/>.
afb6c265 19
afb6c265 20
23cac885 21// 27.4.4.2 basic_ios member functions
afb6c265 22
23cac885
BK
23// NB: Don't include any other headers in this file.
24#include <ios>
afb6c265
PC
25#include <testsuite_hooks.h>
26
23cac885
BK
27// 27.4.4.3 basic_ios iostate flags function
28void test02()
afb6c265 29{
11f10e6b 30 bool test __attribute__((unused)) = true;
afb6c265 31
23cac885
BK
32 typedef std::ios_base::fmtflags fmtflags;
33 typedef std::ios_base::iostate iostate;
34 using std::ios_base;
afb6c265 35
23cac885 36 // basic_ios& copyfmt(const basic_ios& rhs)
ff5d863f 37 {
8fc81078
PC
38 std::ios ios_01(0);
39 std::ios ios_02(0);
23cac885
BK
40 ios_01.exceptions(std::ios_base::eofbit);
41 ios_02.exceptions(std::ios_base::eofbit);
42
43 try {
44 ios_01.copyfmt(ios_02);
45 }
46 catch(...) {
47 VERIFY( false );
48 }
ff5d863f 49 }
ff5d863f 50
23cac885 51 {
8fc81078
PC
52 std::ios ios_01(0);
53 std::ios ios_02(0);
23cac885
BK
54 ios_01.clear(std::ios_base::eofbit);
55 ios_02.exceptions(std::ios_base::eofbit);
ff5d863f 56
23cac885
BK
57 try {
58 ios_01.copyfmt(ios_02);
59 VERIFY( false );
60 }
61 catch(std::ios_base::failure& fail) {
62 VERIFY( true );
63 }
64 catch(...) {
65 VERIFY( false );
66 }
67 }
ff5d863f
PC
68}
69
afb6c265
PC
70int main()
71{
ff5d863f 72 test02();
afb6c265
PC
73 return 0;
74}