]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/27_io/basic_istream/extractors_arithmetic/char/12.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 27_io / basic_istream / extractors_arithmetic / char / 12.cc
CommitLineData
8de6a6df
KG
1// 1999-04-12 bkoz
2
5624e564 3// Copyright (C) 1999-2015 Free Software Foundation, Inc.
8de6a6df
KG
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)
8de6a6df
KG
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/>.
8de6a6df
KG
19
20// 27.6.1.2.2 arithmetic extractors
21
d9f069ab 22// { dg-do run { xfail { lax_strtofp } } }
8de6a6df 23
8de6a6df 24#include <istream>
8de6a6df 25#include <sstream>
6725add5 26#include <limits>
8de6a6df
KG
27#include <testsuite_hooks.h>
28
8de6a6df
KG
29// libstdc++/3720
30// excess input should not cause a core dump
31template<typename T>
32bool test12_aux(bool integer_type)
33{
11f10e6b 34 bool test __attribute__((unused)) = true;
8de6a6df
KG
35
36 int digits_overflow;
37 if (integer_type)
38 // This many digits will overflow integer types in base 10.
39 digits_overflow = std::numeric_limits<T>::digits10 + 2;
40 else
41 // This might do it, unsure.
42 digits_overflow = std::numeric_limits<T>::max_exponent10 + 1;
43
44 std::string st;
45 std::string part = "1234567890123456789012345678901234567890";
11f10e6b 46 for (std::size_t i = 0; i < digits_overflow / part.size() + 1; ++i)
8de6a6df
KG
47 st += part;
48 std::stringbuf sb(st);
49 std::istream is(&sb);
50 T t;
51 is >> t;
52 VERIFY(is.fail());
53 return test;
54}
55
56bool test12()
57{
11f10e6b 58 bool test __attribute__((unused)) = true;
8de6a6df
KG
59 VERIFY(test12_aux<short>(true));
60 VERIFY(test12_aux<int>(true));
61 VERIFY(test12_aux<long>(true));
62 VERIFY(test12_aux<float>(false));
63 VERIFY(test12_aux<double>(false));
64 VERIFY(test12_aux<long double>(false));
65 return test;
66}
67
68int main()
69{
70 test12();
71 return 0;
72}