]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_istream/extractors_arithmetic/wchar_t/exceptions_failbit.cc
Licensing changes to GPLv3 resp. GPLv3 with GCC Runtime Exception.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / extractors_arithmetic / wchar_t / exceptions_failbit.cc
CommitLineData
748086b7 1// Copyright (C) 2004, 2009 Free Software Foundation, Inc.
cfc45d90
PC
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
748086b7 6// Free Software Foundation; either version 3, or (at your option)
cfc45d90
PC
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
748086b7
JJ
15// with this library; see the file COPYING3. If not see
16// <http://www.gnu.org/licenses/>.
cfc45d90 17
cfc45d90
PC
18
19#include <sstream>
20#include <testsuite_hooks.h>
21
22// libstdc++/10093
23template<typename T>
24void test_failbit()
25{
26 using namespace std;
27 bool test __attribute__((unused)) = true;
28
29 wistringstream stream(L"jaylib - champion sound");
30 stream.exceptions(ios_base::failbit);
31
32 try
33 {
34 T i;
35 stream >> i;
36 VERIFY( false );
37 }
38 catch (const ios_base::failure&)
39 {
40 // stream should set failbit and throw ios_base::failure.
41 VERIFY( stream.fail() );
42 VERIFY( !stream.bad() );
43 VERIFY( !stream.eof() );
44 }
45 catch(...)
46 { VERIFY( false ); }
47}
48
49int main()
50{
51 test_failbit<bool>();
52 test_failbit<short>();
53 test_failbit<unsigned short>();
54 test_failbit<int>();
55 test_failbit<unsigned int>();
56 test_failbit<long>();
57 test_failbit<unsigned long>();
58
59 test_failbit<float>();
60 test_failbit<double>();
61
62 test_failbit<void*>();
63
64 return 0;
65}