mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-9463 Skip test on Cygwin using GCC because of rounding issue
X-SVN-Rev: 32122
This commit is contained in:
parent
ec34e2820e
commit
eb5efa3a02
1 changed files with 6 additions and 0 deletions
|
@ -6378,6 +6378,11 @@ void NumberFormatTest::TestDecimal() {
|
|||
}
|
||||
}
|
||||
|
||||
#if U_PLATFORM != U_PF_CYGWIN || defined(CYGWINMSVC)
|
||||
/*
|
||||
* This test fails on Cygwin (1.7.16) using GCC because of a rounding issue with strtod().
|
||||
* See #9463
|
||||
*/
|
||||
{
|
||||
// Check that a parse returns a decimal number with full accuracy
|
||||
UErrorCode status = U_ZERO_ERROR;
|
||||
|
@ -6395,6 +6400,7 @@ void NumberFormatTest::TestDecimal() {
|
|||
delete fmtr;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue