mirror of
https://github.com/lemire/fast_double_parser.git
synced 2025-04-03 20:04:57 +00:00
Adding test.
This commit is contained in:
parent
267b118aec
commit
357eec4e61
1 changed files with 12 additions and 0 deletions
|
@ -226,6 +226,16 @@ void issue32() {
|
|||
std::cout << "zero maps to zero" << std::endl;
|
||||
}
|
||||
|
||||
void negative_subsubnormal_to_negative_zero() {
|
||||
std::string a = "-1e-999";
|
||||
double x;
|
||||
bool ok = fast_double_parser::parse_number(a.c_str(), &x);
|
||||
if(!ok) throw std::runtime_error("could not parse -1e-999");
|
||||
if(!std::signbit(x)) throw std::runtime_error("-1e-999 signbit is positive");
|
||||
if(x != -0) throw std::runtime_error("-1e-999 is not -0");
|
||||
std::cout << "-1e-999 parses to -0" << std::endl;
|
||||
}
|
||||
|
||||
void issue50_fastpath() {
|
||||
std::string a = "-0.0";
|
||||
double x;
|
||||
|
@ -235,6 +245,7 @@ void issue50_fastpath() {
|
|||
std::cout << "-0.0 signbit is negative" << std::endl;
|
||||
}
|
||||
|
||||
|
||||
void issue50_off_fastpath() {
|
||||
std::string a = "-0.0e-22";
|
||||
double x;
|
||||
|
@ -373,6 +384,7 @@ int main() {
|
|||
throw std::runtime_error("fast_double_parser disagrees");
|
||||
}
|
||||
}
|
||||
negative_subsubnormal_to_negative_zero();
|
||||
std::cout << std::endl;
|
||||
std::cout << "All ok" << std::endl;
|
||||
printf("Good!\n");
|
||||
|
|
Loading…
Add table
Reference in a new issue