Skip to content

Commit 109008d

Browse files
Craigsven-oly
authored andcommitted
ICU-22723 ICU76: Update known issue references to cloned reports. BRS unicode-org#27
See unicode-org#3215
1 parent 0924c72 commit 109008d

File tree

6 files changed

+12
-19
lines changed

6 files changed

+12
-19
lines changed

icu4c/source/test/intltest/dtptngts.cpp

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1391,9 +1391,8 @@ void IntlTestDateTimePatternGeneratorAPI::testJjMapping() {
13911391
continue;
13921392
}
13931393
// Now check that shortPattern and jPattern use the same hour cycle
1394-
if ((uprv_strncmp(localeID, "csw", 3) == 0 || uprv_strncmp(localeID, "kxv_", 4) == 0 || uprv_strncmp(localeID, "zh_Hans_MY", 10) == 0
1395-
|| uprv_strncmp(localeID, "yue_Hant_CN", 11) == 0)
1396-
&& logKnownIssue("CLDR-17199", "Need timeFormats with h for csw, kxv_Xxxx, zh_Hans_MY, yue_Hant_CN")) {
1394+
if ((uprv_strncmp(localeID, "yue_Hant_CN", 11) == 0)
1395+
&& logKnownIssue("CLDR-17979", "Need timeFormats with h for yue_Hant_CN")) {
13971396
continue;
13981397
}
13991398
UnicodeString jPatSkeleton = DateTimePatternGenerator::staticGetSkeleton(jPattern, status);

icu4c/source/test/intltest/loctest.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4131,7 +4131,7 @@ LocaleTest::TestAddLikelyAndMinimizeSubtags() {
41314131
const char* const org = item.from;
41324132
const char* const exp = item.add;
41334133
if (uprv_strcmp(org,"und_Hant_CN") == 0 &&
4134-
logKnownIssue("CLDR-17908", "und_Hant_CN changed expected result for Likely Subtags")) {
4134+
logKnownIssue("CLDR-17981", "und_Hant_CN changed expected result for Likely Subtags")) {
41354135
continue;
41364136
}
41374137
Locale res(org);
@@ -4148,7 +4148,7 @@ LocaleTest::TestAddLikelyAndMinimizeSubtags() {
41484148
const char* const org = item.from;
41494149
const char* const exp = item.remove;
41504150
if (uprv_strcmp(org,"und_Hant_CN") == 0 &&
4151-
logKnownIssue("CLDR-17908", "und_Hant_CN changed expected result for Likely Subtags")) {
4151+
logKnownIssue("CLDR-17981", "und_Hant_CN changed expected result for Likely Subtags")) {
41524152
continue;
41534153
}
41544154
Locale res(org);
@@ -5719,7 +5719,7 @@ void LocaleTest::TestIsRightToLeft() {
57195719
assertFalse("fil LTR", Locale("fil").isRightToLeft());
57205720
assertFalse("he-Zyxw LTR", Locale("he-Zyxw").isRightToLeft());
57215721

5722-
if (logKnownIssue("CLDR-17908", "und_Hant_CN changed expected result for Likely Subtags")) {
5722+
if (logKnownIssue("CLDR-17981", "und_Hant_CN changed expected result for Likely Subtags")) {
57235723
return;
57245724
}
57255725
}
@@ -5928,7 +5928,7 @@ testLikelySubtagsLineFn(void *context,
59285928

59295929
if ( (uprv_strcmp(source.c_str(), "und-Latn-MU") == 0 || uprv_strcmp(source.c_str(), "und-Latn-RS") == 0 || uprv_strcmp(source.c_str(), "und-Latn-SL") == 0
59305930
|| uprv_strcmp(source.c_str(), "und-Latn-TK") == 0 || uprv_strcmp(source.c_str(), "und-Latn-ZM") == 0 )
5931-
&& THIS->logKnownIssue("CLDR-17908", "und_Hant_CN changed expected result for Likely Subtags")) {
5931+
&& THIS->logKnownIssue("CLDR-17981", "und_Hant_CN changed expected result for Likely Subtags")) {
59325932
return;
59335933
}
59345934

icu4c/source/test/intltest/tzfmttst.cpp

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -620,17 +620,10 @@ void TimeZoneFormatTest::RunTimeRoundTripTests(int32_t threadNumber) {
620620
continue;
621621
}
622622

623-
if ((*tzid == "America/Miquelon" || *tzid == "America/Hermosillo" || *tzid == "America/Mazatlan")
624-
&& uprv_strncmp(gLocaleData->locales[locidx].getName(),"ku",2) == 0
625-
&& uprv_strcmp(PATTERNS[patidx], "v") == 0
626-
&& logKnownIssue("CLDR-17024", "TestTimeRoundTrip fail with tz=America/Miquelon, pattern=v, locale=ku")) {
627-
continue;
628-
}
629-
630-
631623
BasicTimeZone *tz = dynamic_cast<BasicTimeZone*>(TimeZone::createTimeZone(*tzid));
632624
sdf->setTimeZone(*tz);
633625

626+
634627
UDate t = gLocaleData->START_TIME;
635628
TimeZoneTransition tzt;
636629
UBool tztAvail = false;

icu4j/main/common_tests/src/test/java/com/ibm/icu/dev/test/util/ULocaleTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4167,7 +4167,7 @@ else if (!res.toString().equals(exp)) {
41674167

41684168
for (int i = 0; i < full_data.length; i++) {
41694169
if (full_data[i][0].equals("und_Hant_CN") &&
4170-
logKnownIssue("CLDR-17908", "und_Hant_CN changed expected result for Likely Subtags")) {
4170+
logKnownIssue("CLDR-17981", "und_Hant_CN changed expected result for Likely Subtags")) {
41714171
continue;
41724172
}
41734173
ULocale org = new ULocale(full_data[i][0]);
@@ -5720,7 +5720,7 @@ public void likelySubtagsDataDriven(TestCase test) {
57205720
} else {
57215721
if ( ( test.source.equals("und-Latn-MU") || test.source.equals("und-Latn-RS") || test.source.equals("und-Latn-SL")
57225722
|| test.source.equals("und-Latn-TK") || test.source.equals("und-Latn-ZM") )
5723-
&& logKnownIssue("CLDR-17908", "und_Hant_CN changed expected result for Likely Subtags") ) {
5723+
&& logKnownIssue("CLDR-17981", "und_Hant_CN changed expected result for Likely Subtags") ) {
57245724
return;
57255725
}
57265726
assertEquals("addLikelySubtags(" + test.source + ")",

icu4j/main/core/src/test/java/com/ibm/icu/dev/test/calendar/IBMCalendarTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ public void TestFirstDayOfWeek() {
269269
// ssh => ssh_Arab_AE => Saturday
270270
verifyFirstDayOfWeek("ssh", Calendar.MONDAY);
271271
// wbl_Arab => wbl_Arab_AF => Saturday
272-
if (!logKnownIssue("CLDR-17907", "wbl-Arab returns wrong first day of the week, probably caused by wrong Likely Subtag algo")) {
272+
// Also known as CLDR-17907
273+
if (!logKnownIssue("ICU-22924", "wbl-Arab returns wrong first day of the week, probably caused by wrong Likely Subtag algo")) {
273274
verifyFirstDayOfWeek("wbl-Arab", Calendar.SATURDAY);
274275
}
275276

icu4j/main/translit/src/test/java/com/ibm/icu/dev/test/translit/RoundTripTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ public void Testel() throws IOException {
378378

379379
@Test
380380
public void TestCyrillic() throws IOException {
381-
if (logKnownIssue("CLDR-16218", "ICU4C Transliterator RoundTripTest finds many problems with updated Cyrillic-Latin transform")) {
381+
if (logKnownIssue("CLDR-17976", "ICU4C Transliterator RoundTripTest finds many problems with updated Cyrillic-Latin transform")) {
382382
return;
383383
}
384384
long start = System.currentTimeMillis();

0 commit comments

Comments
 (0)