ICU-22326 logKnownIssue skip for exhaustive test failures with kxv(_Deva)? day/month names

This commit is contained in:
Peter Edberg 2023-10-27 12:50:17 -07:00 committed by Markus Scherer
parent 9f64d3f269
commit d44f5bc9f0

View file

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