Skip to content

Commit

Permalink
ICU-22326 logKnownIssue skip for exhaustive test failures with kxv(_D…
Browse files Browse the repository at this point in the history
…eva)? day/month names
  • Loading branch information
pedberg-icu authored and markusicu committed Oct 27, 2023
1 parent 9f64d3f commit d44f5bc
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions icu4c/source/test/cintltst/cldrtest.c
Original file line number Diff line number Diff line change
Expand Up @@ -1012,6 +1012,10 @@ static void VerifyTranslation(void) {
log_knownIssue("cldrbug:15355", "ks_Deva day names use chars not in exemplars")) {
end = 0;
}
if (uprv_strncmp(currLoc,"kxv",3) == 0 && // Unnecessarily also skips kxv_Orya/kxv_Telu, that is ok for now
log_knownIssue("CLDR-17203", "Some day names in kxv(_Deva)? use chars not in exemplars")) {
end = 0;
}

for (idx = 0; idx < end; idx++) {
const UChar *fromBundleStr = ures_getStringByIndex(resArray, idx, &langSize, &errorCode);
Expand Down Expand Up @@ -1049,6 +1053,10 @@ static void VerifyTranslation(void) {
log_knownIssue("cldrbug:15355", "ks_Deva month names use chars not in exemplars")) {
end = 0;
}
if (uprv_strncmp(currLoc,"kxv",3) == 0 && // Unnecessarily also skips kxv_Orya/kxv_Telu, that is ok for now
log_knownIssue("CLDR-17203", "Some month names in kxv(_Deva)? use chars not in exemplars")) {
end = 0;
}

for (idx = 0; idx < end; idx++) {
const UChar *fromBundleStr = ures_getStringByIndex(resArray, idx, &langSize, &errorCode);
Expand Down

0 comments on commit d44f5bc

Please sign in to comment.