mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 17:01:16 +00:00
ICU-11454 cdattst/TestOverrideNumberFormat, re-enable accidentaly skipped tests, set known issue for resulting problem.
X-SVN-Rev: 36901
This commit is contained in:
parent
c47bac8255
commit
5805449990
1 changed files with 4 additions and 2 deletions
|
@ -1614,7 +1614,6 @@ static void TestOverrideNumberFormat(void) {
|
|||
UDateFormat* fmt;
|
||||
const UNumberFormat* getter_result;
|
||||
int32_t i;
|
||||
unsigned j;
|
||||
|
||||
expected=(UChar*)malloc(sizeof(UChar) * 10);
|
||||
fields=(UChar*)malloc(sizeof(UChar) * 10);
|
||||
|
@ -1650,7 +1649,10 @@ static void TestOverrideNumberFormat(void) {
|
|||
}
|
||||
udat_close(fmt);
|
||||
|
||||
for (j=0; i<sizeof(overrideNumberFormat)/sizeof(overrideNumberFormat[0]); i++){
|
||||
for (i=0; i<UPRV_LENGTHOF(overrideNumberFormat); i++){
|
||||
if ((i==1 || i==3 || i==4) && log_knownIssue("11454", "skipping overrideNumberFormat test case")) {
|
||||
continue;
|
||||
}
|
||||
UChar ubuf[kUbufMax];
|
||||
UDateFormat* fmt2;
|
||||
UNumberFormat* overrideFmt2;
|
||||
|
|
Loading…
Add table
Reference in a new issue