mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-597 Don't try to convert a large double to int32_t (again).
X-SVN-Rev: 4481
This commit is contained in:
parent
9e61a552b6
commit
d26d1e07c1
1 changed files with 4 additions and 1 deletions
|
@ -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));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue