]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/testsuite/21_strings/basic_string/numeric_conversions/char/stoull.cc
re PR testsuite/39696 (gcc.dg/tree-ssa/ssa-ccp-25.c scan-tree-dump doesn't work on...
[thirdparty/gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / numeric_conversions / char / stoull.cc
CommitLineData
7364f286 1// { dg-options "-std=gnu++0x" }
83b83ae9
PC
2// { dg-require-string-conversions "" }
3
7364f286
PC
4// 2008-06-15 Paolo Carlini <paolo.carlini@oracle.com>
5
6// Copyright (C) 2008 Free Software Foundation, Inc.
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
11// Free Software Foundation; either version 2, or (at your option)
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
20// with this library; see the file COPYING. If not, write to the Free
21// Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
22// USA.
23
24// 21.4 Numeric Conversions [string.conversions]
25
26#include <string>
27#include <limits>
28#include <stdexcept>
29#include <testsuite_hooks.h>
30
31void
32test01()
33{
7364f286
PC
34 bool test __attribute__((unused)) = false;
35 using namespace std;
36
37 try
38 {
39 string one;
40 stoull(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 stoull(one);
56 }
57 catch(std::invalid_argument)
58 {
59 test = true;
60 }
61 catch(...)
62 {
63 }
64 VERIFY( test );
65
66 unsigned long long ull1 = 0;
67 try
68 {
69 string one("a");
70 ull1 = stoull(one, 0, 16);
71 }
72 catch(...)
73 {
74 test = false;
75 }
76 VERIFY( test );
77 VERIFY( ull1 == 10 );
78
79 size_t idx1 = 0;
80 try
81 {
82 string one("78");
83 ull1 = stoull(one, &idx1, 8);
84 }
85 catch(...)
86 {
87 test = false;
88 }
89 VERIFY( test );
90 VERIFY( ull1 == 7 );
91 VERIFY( idx1 = 1 );
92
93 try
94 {
95 string one("10112");
96 ull1 = stoull(one, &idx1, 2);
97 }
98 catch(...)
99 {
100 test = false;
101 }
102 VERIFY( test );
103 VERIFY( ull1 == 11 );
104 VERIFY( idx1 == 4 );
105
106 try
107 {
108 string one("0XE");
109 ull1 = stoull(one, &idx1, 0);
110 }
111 catch(...)
112 {
113 test = false;
114 }
115 VERIFY( test );
116 VERIFY( ull1 == 14 );
117 VERIFY( idx1 == 3 );
118
119 test = false;
120 try
121 {
122 string one(1000, '9');
123 ull1 = stoull(one);
124 }
125 catch(std::out_of_range)
126 {
127 test = true;
128 }
129 catch(...)
130 {
131 }
132 VERIFY( test );
133 VERIFY( ull1 == 14 );
134
135 try
136 {
137 ull1 = numeric_limits<unsigned long long>::max();
138 string one(to_string(ull1));
139 ull1 = stoull(one);
140 }
141 catch(...)
142 {
143 test = false;
144 }
145 VERIFY( test );
146 VERIFY( ull1 == numeric_limits<unsigned long long>::max() );
7364f286
PC
147}
148
149int main()
150{
151 test01();
152 return 0;
153}