]> granicus.if.org Git - icu/commitdiff
ICU-10595 reenable TestNextSortKeyPartJaIdentical()
authorMarkus Scherer <markus.icu@gmail.com>
Thu, 27 Feb 2014 23:31:01 +0000 (23:31 +0000)
committerMarkus Scherer <markus.icu@gmail.com>
Thu, 27 Feb 2014 23:31:01 +0000 (23:31 +0000)
X-SVN-Rev: 35259

icu4c/source/test/cintltst/cmsccoll.c
icu4c/source/test/perf/collperf2/collperf2.cpp

index 361b18a1449bc13d36c8a12a958e5c7155752635..41653bcef092bb3baaef4aabdcb240ffa6546ecd 100644 (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;
         }
index 6376203b9977fd95cde67341fab1cfc0f0f6a205..d0c0c129124422a9e43c519e680d10c1bed06d36 100644 (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);
 }