]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string/numeric_conversions/char/stof.cc
basic_string.h (stod, [...]): Declare in C++0x mode.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / numeric_conversions / char / stof.cc
CommitLineData
7364f286
PC
1// { dg-options "-std=gnu++0x" }
2// 2008-06-15 Paolo Carlini <paolo.carlini@oracle.com>
3
4// Copyright (C) 2008 Free Software Foundation, Inc.
5//
6// This file is part of the GNU ISO C++ Library. This library is free
7// software; you can redistribute it and/or modify it under the
8// terms of the GNU General Public License as published by the
9// Free Software Foundation; either version 2, or (at your option)
10// any later version.
11
12// This library is distributed in the hope that it will be useful,
13// but WITHOUT ANY WARRANTY; without even the implied warranty of
14// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15// GNU General Public License for more details.
16
17// You should have received a copy of the GNU General Public License along
18// with this library; see the file COPYING. If not, write to the Free
19// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
20// USA.
21
22// 21.4 Numeric Conversions [string.conversions]
23
24#include <string>
25#include <limits>
26#include <stdexcept>
27#include <testsuite_hooks.h>
28
29void
30test01()
31{
32#ifdef _GLIBCXX_USE_C99
33
34 bool test __attribute__((unused)) = false;
35 using namespace std;
36
37 try
38 {
39 string one;
40 stof(one);
41 }
42 catch(std::invalid_argument)
43 {
44 test = true;
45 }
46 catch(...)
47 {
48 }
49 VERIFY( test );
50
51 test = false;
52 try
53 {
54 string one("a");
55 stof(one);
56 }
57 catch(std::invalid_argument)
58 {
59 test = true;
60 }
61 catch(...)
62 {
63 }
64 VERIFY( test );
65
66 float f1 = 0.0f;
67 size_t idx1 = 0;
68 try
69 {
70 string one("2.0a");
71 f1 = stof(one, &idx1);
72 }
73 catch(...)
74 {
75 test = false;
76 }
77 VERIFY( test );
78 VERIFY( f1 == 2.0f );
79 VERIFY( idx1 == 3 );
80
81 test = false;
82 try
83 {
84 string one("1e");
85 one.append(2 * numeric_limits<float>::max_exponent10, '9');
86 f1 = stof(one);
87 }
88 catch(std::out_of_range)
89 {
90 test = true;
91 }
92 catch(...)
93 {
94 }
95 VERIFY( test );
96 VERIFY( f1 == 2.0f );
97
98 try
99 {
100 long double ld0 = numeric_limits<float>::max() / 100.0;
101 string one(to_string(ld0));
102 stof(one);
103 }
104 catch(...)
105 {
106 test = false;
107 }
108 VERIFY( test );
109
110 if (sizeof(float) < sizeof(long double))
111 {
112 test = false;
113 f1 = -1.0f;
114 try
115 {
116 long double ld1 = numeric_limits<float>::max();
117 ld1 *= 100.0;
118 string one(to_string(ld1));
119 f1 = stof(one);
120 }
121 catch(std::out_of_range)
122 {
123 test = true;
124 }
125 catch(...)
126 {
127 }
128 VERIFY( test );
129 VERIFY( f1 == -1.0f );
130 }
131
132#endif
133}
134
135int main()
136{
137 test01();
138 return 0;
139}