ICU-597 Don't try to convert a large double to int32_t (again).

X-SVN-Rev: 4481
This commit is contained in:
George Rhoten 2001-04-17 00:47:46 +00:00
parent 9e61a552b6
commit d26d1e07c1

View file

@ -197,7 +197,10 @@ IntlTestNumberFormat::testFormat(/* char* par */)
// try again with very large numbers
it = randDouble() * 10000000000.0;
tryIt(it);
it = randDouble() * INT32_MAX;
// try again with very large numbers
// and without going outside of the int32_t range
it = randFraction() * INT32_MAX;
tryIt(it);
tryIt((int32_t)uprv_floor(it));