Fix string conversions functions to throw out_of_range properly. Fixes http://llvm.org/bugs/show_bug.cgi?id=14919.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@172447 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2013-01-14 18:59:43 +00:00
parent b4ebb0e415
commit 3e3ae9ec41
3 changed files with 80 additions and 62 deletions

View File

@@ -32,23 +32,24 @@ int main()
idx = 0;
assert(std::stof(L"10g", &idx) == 10);
assert(idx == 2);
idx = 0;
try
{
assert(std::stof("1.e60", &idx) == INFINITY);
assert(idx == 5);
assert(false);
}
catch (const std::out_of_range&)
{
assert(false);
assert(idx == 0);
}
try
{
assert(std::stof(L"1.e60", &idx) == INFINITY);
assert(idx == 5);
assert(false);
}
catch (const std::out_of_range&)
{
assert(false);
assert(idx == 0);
}
idx = 0;
try

View File

@@ -86,4 +86,13 @@ int main()
{
assert(idx == 0);
}
try
{
std::stoll("99999999999999999999999999", &idx);
assert(false);
}
catch (const std::out_of_range&)
{
assert(idx == 0);
}
}