]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string/numeric_conversions/char/stoull.cc
Update copyright years.
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / numeric_conversions / char / stoull.cc
CommitLineData
52066eae 1// { dg-do run { target c++11 } }
b4df5e92 2// { dg-require-string-conversions "" }
83b83ae9 3
7364f286
PC
4// 2008-06-15 Paolo Carlini <paolo.carlini@oracle.com>
5
a945c346 6// Copyright (C) 2008-2024 Free Software Foundation, Inc.
7364f286
PC
7//
8// This file is part of the GNU ISO C++ Library. This library is free
9// software; you can redistribute it and/or modify it under the
10// terms of the GNU General Public License as published by the
748086b7 11// Free Software Foundation; either version 3, or (at your option)
7364f286
PC
12// any later version.
13
14// This library is distributed in the hope that it will be useful,
15// but WITHOUT ANY WARRANTY; without even the implied warranty of
16// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17// GNU General Public License for more details.
18
19// You should have received a copy of the GNU General Public License along
748086b7
JJ
20// with this library; see the file COPYING3. If not see
21// <http://www.gnu.org/licenses/>.
7364f286
PC
22
23// 21.4 Numeric Conversions [string.conversions]
24
25#include <string>
26#include <limits>
27#include <stdexcept>
28#include <testsuite_hooks.h>
29
30void
31test01()
32{
118c8424 33 bool test = false;
7364f286
PC
34 using namespace std;
35
36 try
37 {
38 string one;
13feb023 39 stoull(one);
7364f286 40 }
13feb023 41 catch(const std::invalid_argument&)
7364f286
PC
42 {
43 test = true;
44 }
45 catch(...)
46 {
47 }
48 VERIFY( test );
13feb023 49
7364f286
PC
50 test = false;
51 try
52 {
53 string one("a");
13feb023 54 stoull(one);
7364f286 55 }
13feb023 56 catch(const std::invalid_argument&)
7364f286
PC
57 {
58 test = true;
59 }
60 catch(...)
61 {
62 }
63 VERIFY( test );
64
65 unsigned long long ull1 = 0;
66 try
67 {
68 string one("a");
13feb023 69 ull1 = stoull(one, 0, 16);
7364f286
PC
70 }
71 catch(...)
72 {
73 test = false;
74 }
75 VERIFY( test );
76 VERIFY( ull1 == 10 );
77
78 size_t idx1 = 0;
79 try
80 {
81 string one("78");
13feb023 82 ull1 = stoull(one, &idx1, 8);
7364f286
PC
83 }
84 catch(...)
85 {
86 test = false;
87 }
88 VERIFY( test );
89 VERIFY( ull1 == 7 );
90 VERIFY( idx1 = 1 );
91
92 try
93 {
94 string one("10112");
13feb023 95 ull1 = stoull(one, &idx1, 2);
7364f286
PC
96 }
97 catch(...)
98 {
99 test = false;
100 }
101 VERIFY( test );
102 VERIFY( ull1 == 11 );
103 VERIFY( idx1 == 4 );
104
105 try
106 {
107 string one("0XE");
13feb023 108 ull1 = stoull(one, &idx1, 0);
7364f286
PC
109 }
110 catch(...)
111 {
112 test = false;
113 }
114 VERIFY( test );
115 VERIFY( ull1 == 14 );
116 VERIFY( idx1 == 3 );
117
118 test = false;
119 try
120 {
121 string one(1000, '9');
122 ull1 = stoull(one);
123 }
13feb023 124 catch(const std::out_of_range&)
7364f286
PC
125 {
126 test = true;
127 }
128 catch(...)
129 {
130 }
131 VERIFY( test );
132 VERIFY( ull1 == 14 );
133
134 try
135 {
136 ull1 = numeric_limits<unsigned long long>::max();
137 string one(to_string(ull1));
138 ull1 = stoull(one);
139 }
140 catch(...)
141 {
142 test = false;
143 }
144 VERIFY( test );
145 VERIFY( ull1 == numeric_limits<unsigned long long>::max() );
7364f286
PC
146}
147
148int main()
149{
150 test01();
151 return 0;
152}