Imported Upstream version 4.8.1
[platform/upstream/gcc48.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / extractors_arithmetic / wchar_t / 12.cc
1 // Copyright (C) 2004-2013 Free Software Foundation, Inc.
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
6 // Free Software Foundation; either version 3, or (at your option)
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
15 // with this library; see the file COPYING3.  If not see
16 // <http://www.gnu.org/licenses/>.
17
18 // 27.6.1.2.2 arithmetic extractors
19
20 // XXX This test fails on Solaris 9 because of a bug in libc
21 // XXX sscanf for very long input.  See:
22 // XXX http://gcc.gnu.org/ml/gcc/2002-12/msg01422.html
23 // { dg-do run { xfail { { *-*-solaris2.9 } || lax_strtofp } } }
24
25 #include <istream>
26 #include <sstream>
27 #include <limits>
28 #include <testsuite_hooks.h>
29
30 // libstdc++/3720
31 // excess input should not cause a core dump
32 template<typename T>
33 bool test12_aux(bool integer_type)
34 {
35   bool test __attribute__((unused)) = true;
36   
37   int digits_overflow;
38   if (integer_type)
39     // This many digits will overflow integer types in base 10.
40     digits_overflow = std::numeric_limits<T>::digits10 + 2;
41   else
42     // This might do it, unsure.
43     digits_overflow = std::numeric_limits<T>::max_exponent10 + 1;
44   
45   std::wstring st;
46   std::wstring part = L"1234567890123456789012345678901234567890";
47   for (std::size_t i = 0; i < digits_overflow / part.size() + 1; ++i)
48     st += part;
49   std::wstringbuf sb(st);
50   std::wistream is(&sb);
51   T t;
52   is >> t;
53   VERIFY( is.fail() );
54   return test;
55 }
56
57 bool test12()
58 {
59   bool test __attribute__((unused)) = true;
60   VERIFY( test12_aux<short>(true) );
61   VERIFY( test12_aux<int>(true) );
62   VERIFY( test12_aux<long>(true) );
63   VERIFY( test12_aux<float>(false) );
64   VERIFY( test12_aux<double>(false) );
65   VERIFY( test12_aux<long double>(false) );
66   return test;
67 }
68
69 int main()
70 {
71   test12();
72   return 0;
73 }