Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Please Ignore for now- Remove KnownIssues from fixed bugs #2927

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions icu4c/source/test/intltest/static_unisets_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ void StaticUnicodeSetsTest::testSetCoverage() {
#define ASSERT_IN_SET(name, foo) assertInSet(localeName, UnicodeString("" #name ""), name, foo)

ASSERT_IN_SET(decimals, dfs.getConstSymbol(DecimalFormatSymbols::kDecimalSeparatorSymbol));
if (locName==nullptr || uprv_strncmp(locName,"nqo",3) != 0 ||
!logKnownIssue("CLDR-17023", "Number symbols and/or parseLenients messed up for N’Ko")) {
if (locName==nullptr || uprv_strncmp(locName,"nqo",3) != 0) {
ASSERT_IN_SET(grouping, dfs.getConstSymbol(DecimalFormatSymbols::kGroupingSeparatorSymbol));
}
ASSERT_IN_SET(plusSign, dfs.getConstSymbol(DecimalFormatSymbols::kPlusSignSymbol));
Expand Down
5 changes: 2 additions & 3 deletions icu4c/source/test/intltest/transtst.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2151,7 +2151,7 @@ void TransliteratorTest::TestSTV() {
for (j=0; j<3; ++j) {
if (SOURCES[j] == nullptr) continue;
if (s.caseCompare(SOURCES[j],0)==0) {
if (j!=2 || !logKnownIssue("ICU-21911", "ICU4C cannot create inverse of (or unregister) Any-Xxxx/Variant transform created from both-direction transform")) {
if (j!=2) {
errln((UnicodeString)"FAIL: unregister(" + s + "-*) failed");
}
}
Expand Down Expand Up @@ -3685,8 +3685,7 @@ void TransliteratorTest::TestIncrementalProgress() {
#if UCONFIG_NO_BREAK_ITERATION
&& id.compare((UnicodeString)"Latin-Thai/") != 0
#endif
&& !(logKnownIssue("ICU-21911", "ICU4C cannot create inverse of Any-Xxxx/Variant transform created from both-direction transform") &&
id.startsWith((UnicodeString)"Any-") &&
&& !( id.startsWith((UnicodeString)"Any-") &&
(id.endsWith((UnicodeString)"/UNGEGN") || id.startsWith((UnicodeString)"Any-Ethiopic/") || id.startsWith((UnicodeString)"Any-Braille/") ||
id.endsWith((UnicodeString)"/Gurage_2013") || id.endsWith((UnicodeString)"/Gutgarts") || id.endsWith((UnicodeString)"/Tekie_Alibekit") ||
id.endsWith((UnicodeString)"/Xaleget"))
Expand Down
3 changes: 1 addition & 2 deletions icu4c/source/test/intltest/tzfmttst.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,7 @@ void TimeZoneFormatTest::RunTimeRoundTripTests(int32_t threadNumber) {

if ((*tzid == "America/Miquelon" || *tzid == "America/Hermosillo" || *tzid == "America/Mazatlan")
&& uprv_strncmp(gLocaleData->locales[locidx].getName(),"ku",2) == 0
&& uprv_strcmp(PATTERNS[patidx], "v") == 0
&& logKnownIssue("CLDR-17024", "TestTimeRoundTrip fail with tz=America/Miquelon, pattern=v, locale=ku")) {
&& uprv_strcmp(PATTERNS[patidx], "v") == 0) {
continue;
}

Expand Down