mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-597 AS/400 porting changes
X-SVN-Rev: 3727
This commit is contained in:
parent
f8a3510d6a
commit
45fdff5632
1 changed files with 11 additions and 0 deletions
|
@ -612,6 +612,17 @@ TestChoiceFormat::testValue( double val )
|
|||
return;
|
||||
}
|
||||
|
||||
#ifdef OS400
|
||||
/* The AS/400 will signal an underflow exception when
|
||||
* attempting the rest of the test. No can do.
|
||||
* Generating values less that DBL_MIN are not allowed on AS/400
|
||||
*/
|
||||
if (valprev == 0.0 || val == 0.0 || valnext == 0.0 ) {
|
||||
logln("Skipping the rest of testValue(%lf) valprev=%lf valnext=%lf", val, valprev, valnext);
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
||||
/* volatile so the compiler doesn't get confused.. --srl */
|
||||
volatile double middle;
|
||||
middle = (val + valnext) / 2.0;
|
||||
|
|
Loading…
Add table
Reference in a new issue