]>
git.ipfire.org Git - thirdparty/gcc.git/blob - libstdc++-v3/testsuite/21_strings/basic_string/numeric_conversions/char/stof.cc
944a3605fc60c80aaa402d9021d88fb664ba7aa7
1 // { dg-do run { target c++11 } }
3 // 2008-06-15 Paolo Carlini <paolo.carlini@oracle.com>
5 // Copyright (C) 2008-2025 Free Software Foundation, Inc.
7 // This file is part of the GNU ISO C++ Library. This library is free
8 // software; you can redistribute it and/or modify it under the
9 // terms of the GNU General Public License as published by the
10 // Free Software Foundation; either version 3, or (at your option)
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 // GNU General Public License for more details.
18 // You should have received a copy of the GNU General Public License along
19 // with this library; see the file COPYING3. If not see
20 // <http://www.gnu.org/licenses/>.
22 // 21.4 Numeric Conversions [string.conversions]
27 #include <testsuite_hooks.h>
40 catch(const std::invalid_argument
&)
55 catch(const std::invalid_argument
&)
69 f1
= stof(one
, &idx1
);
83 one
.append(2 * numeric_limits
<float>::max_exponent10
, '9');
86 catch(const std::out_of_range
&)
98 long double ld0
= numeric_limits
<float>::max() / 100.0;
99 string
one(to_string(ld0
));
108 if ((numeric_limits
<long double>::max() / 10000.0L)
109 > numeric_limits
<float>::max())
115 long double ld1
= numeric_limits
<float>::max();
117 string
one(to_string(ld1
));
120 catch(const std::out_of_range
&)
128 VERIFY( f1
== -1.0f
);