ICU-21581 lingering exhaustive fail, need to separately skip sd_Deva month name exemplar test

This commit is contained in:
Peter Edberg 2021-08-19 16:00:54 -07:00 committed by Peter Edberg
parent f6d47953c0
commit 7e07633997

View file

@ -999,7 +999,7 @@ static void VerifyTranslation(void) {
end = 0;
}
if ((uprv_strncmp(currLoc,"mai",3) == 0 || uprv_strncmp(currLoc,"sd_Deva",7) == 0) &&
log_knownIssue("cldrbug:14995", "mai/sd_Deva day/month names use chars not in exemplars")) {
log_knownIssue("cldrbug:14995", "mai/sd_Deva day names use chars not in exemplars")) {
end = 0;
}
@ -1031,6 +1031,10 @@ static void VerifyTranslation(void) {
else {
end = ures_getSize(resArray);
}
if (uprv_strncmp(currLoc,"sd_Deva",7) == 0 &&
log_knownIssue("cldrbug:14995", "sd_Deva month names use chars not in exemplars")) {
end = 0;
}
for (idx = 0; idx < end; idx++) {
const UChar *fromBundleStr = ures_getStringByIndex(resArray, idx, &langSize, &errorCode);