From d44f5bc9f0dc5a86c92828164a9cf532e9b53265 Mon Sep 17 00:00:00 2001 From: Peter Edberg Date: Fri, 27 Oct 2023 12:50:17 -0700 Subject: [PATCH] ICU-22326 logKnownIssue skip for exhaustive test failures with kxv(_Deva)? day/month names --- icu4c/source/test/cintltst/cldrtest.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/icu4c/source/test/cintltst/cldrtest.c b/icu4c/source/test/cintltst/cldrtest.c index e0e6661d3d8..77a2a51584c 100644 --- a/icu4c/source/test/cintltst/cldrtest.c +++ b/icu4c/source/test/cintltst/cldrtest.c @@ -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);