mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-06 05:55:35 +00:00
ICU-8407 IntlTestNumberFormat::testLocale() - don't do scientific test for en_US_POSIX
X-SVN-Rev: 29584
This commit is contained in:
parent
e44c32c669
commit
f244b0674d
1 changed files with 8 additions and 5 deletions
|
@ -11,6 +11,7 @@
|
|||
#include "unicode/decimfmt.h"
|
||||
#include "tsnmfmt.h"
|
||||
#include "putilimp.h"
|
||||
#include "cstring.h"
|
||||
#include <float.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
@ -94,11 +95,13 @@ IntlTestNumberFormat::testLocale(/* char* par, */const Locale& locale, const Uni
|
|||
fFormat = NumberFormat::createPercentInstance(locale, fStatus);
|
||||
testFormat(/* par */);
|
||||
|
||||
name = "Scientific test";
|
||||
logln((UnicodeString)name + " (" + localeName + ")");
|
||||
fStatus = U_ZERO_ERROR;
|
||||
fFormat = NumberFormat::createScientificInstance(locale, fStatus);
|
||||
testFormat(/* par */);
|
||||
if (uprv_strcmp(locale.getName(), "en_US_POSIX") != 0) {
|
||||
name = "Scientific test";
|
||||
logln((UnicodeString)name + " (" + localeName + ")");
|
||||
fStatus = U_ZERO_ERROR;
|
||||
fFormat = NumberFormat::createScientificInstance(locale, fStatus);
|
||||
testFormat(/* par */);
|
||||
}
|
||||
}
|
||||
|
||||
double IntlTestNumberFormat::randDouble()
|
||||
|
|
Loading…
Add table
Reference in a new issue