ICU-10595 reenable TestNextSortKeyPartJaIdentical()

X-SVN-Rev: 35259
This commit is contained in:
Markus Scherer 2014-02-27 23:31:01 +00:00
parent a2a0fa000d
commit 84f781e9fb
2 changed files with 0 additions and 12 deletions

View File

@ -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;
}

View File

@ -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);
}