ICU-10595 reenable TestNextSortKeyPartJaIdentical()
X-SVN-Rev: 35259
This commit is contained in:
parent
a2a0fa000d
commit
84f781e9fb
@ -5788,10 +5788,6 @@ static void TestNextSortKeyPartJaIdentical(void)
|
||||
while (keyPartLen == KEY_PART_SIZE) {
|
||||
keyPartLen = ucol_nextSortKeyPart(coll, &iter, state, keyPart, KEY_PART_SIZE, &status);
|
||||
if (U_FAILURE(status)) {
|
||||
if(log_knownIssue("10595", "Ignoring an error returned by ucol_nextSortKeyPart")) {
|
||||
status = U_ZERO_ERROR;
|
||||
continue;
|
||||
}
|
||||
log_err_status(status, "ERROR: in iterating next sort key part: %s\n", myErrorName(status));
|
||||
break;
|
||||
}
|
||||
|
@ -377,10 +377,6 @@ void NextSortKeyPart::call(UErrorCode* status)
|
||||
partLen = ucol_nextSortKeyPart(coll, &iter, state, part, bufSize, status);
|
||||
events++;
|
||||
}
|
||||
// Workaround for #10595
|
||||
if (U_FAILURE(*status)) {
|
||||
*status = U_ZERO_ERROR;
|
||||
}
|
||||
}
|
||||
free(part);
|
||||
}
|
||||
@ -448,10 +444,6 @@ void NextSortKeyPartUTF8::call(UErrorCode* status)
|
||||
partLen = ucol_nextSortKeyPart(coll, &iter, state, part, bufSize, status);
|
||||
events++;
|
||||
}
|
||||
// Workaround for #10595
|
||||
if (U_FAILURE(*status)) {
|
||||
*status = U_ZERO_ERROR;
|
||||
}
|
||||
}
|
||||
free(part);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user