Reverting merge from trunk
[official-gcc.git] / libstdc++-v3 / testsuite / 21_strings / basic_string / numeric_conversions / wchar_t / stol.cc
blob5fe3cf72a7333e30e46f4f2b61e3e551e48bfb0a
1 // { dg-options "-std=gnu++0x" }
2 // { dg-require-string-conversions "" }
3 // 2008-06-15 Paolo Carlini <paolo.carlini@oracle.com>
5 // Copyright (C) 2008-2013 Free Software Foundation, Inc.
6 //
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)
11 // any later version.
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]
24 #include <string>
25 #include <limits>
26 #include <stdexcept>
27 #include <testsuite_hooks.h>
29 void
30 test01()
32 #ifdef _GLIBCXX_USE_C99
34 bool test __attribute__((unused)) = false;
35 using namespace std;
37 try
39 wstring one;
40 stol(one);
42 catch(std::invalid_argument)
44 test = true;
46 catch(...)
49 VERIFY( test );
51 test = false;
52 try
54 wstring one(L"a");
55 stol(one);
57 catch(std::invalid_argument)
59 test = true;
61 catch(...)
64 VERIFY( test );
66 long l1 = 0;
67 try
69 wstring one(L"a");
70 l1 = stol(one, 0, 16);
72 catch(...)
74 test = false;
76 VERIFY( test );
77 VERIFY( l1 == 10 );
79 size_t idx1 = 0;
80 try
82 wstring one(L"78");
83 l1 = stol(one, &idx1, 8);
85 catch(...)
87 test = false;
89 VERIFY( test );
90 VERIFY( l1 == 7 );
91 VERIFY( idx1 = 1 );
93 try
95 wstring one(L"10112");
96 l1 = stol(one, &idx1, 2);
98 catch(...)
100 test = false;
102 VERIFY( test );
103 VERIFY( l1 == 11 );
104 VERIFY( idx1 == 4 );
108 wstring one(L"0XE");
109 l1 = stol(one, &idx1, 0);
111 catch(...)
113 test = false;
115 VERIFY( test );
116 VERIFY( l1 == 14 );
117 VERIFY( idx1 == 3 );
119 test = false;
122 wstring one(1000, L'9');
123 l1 = stol(one);
125 catch(std::out_of_range)
127 test = true;
129 catch(...)
132 VERIFY( test );
133 VERIFY( l1 == 14 );
137 l1 = numeric_limits<long>::max();
138 wstring one(to_wstring((long long)l1));
139 l1 = stol(one);
141 catch(...)
143 test = false;
145 VERIFY( test );
146 VERIFY( l1 == numeric_limits<long>::max() );
150 l1 = numeric_limits<long>::min();
151 wstring one(to_wstring((long long)l1));
152 l1 = stol(one);
154 catch(...)
156 test = false;
158 VERIFY( test );
159 VERIFY( l1 == numeric_limits<long>::min() );
161 #endif
164 int main()
166 test01();
167 return 0;