mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-07 22:44:49 +00:00
ICU-21581 lingering exhaustive fail, need to separately skip sd_Deva month name exemplar test
This commit is contained in:
parent
f6d47953c0
commit
7e07633997
1 changed files with 5 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue