Skip to content

Commit

Permalink
CLDR-17388 update known issues
Browse files Browse the repository at this point in the history
- remove CLDR-10120 "fixed by JDK update"
- remove CLDR-7121 - commented out
- fix ICU-21241 to CLDR-17189
  • Loading branch information
srl295 committed Feb 24, 2024
1 parent 6779458 commit 1550f0f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public void TestChinese() {
static final ULocale MUL = new ULocale(LocaleNames.MUL);

public void testFallbacks() {
if (logKnownIssue("ICU-21241", "waiting on LocaleMatcherData update")) {
if (logKnownIssue("CLDR-17189", "waiting on LocaleMatcherData update")) {
return;
}
for (R4<String, String, Integer, Boolean> foo :
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,16 +223,6 @@ public boolean checkAdding(String source) {
}

public void TestCompleteness() {
// if (logKnownIssue("Cldrbug:7121",
// "Problems with likely subtags test")) {
// return;
// }
// checkAdding("und_Bopo");
// checkAdding("und_Brai");
// checkAdding("und_Limb");
// checkAdding("und_Cakm");
// checkAdding("und_Shaw");

final LanguageTagParser ltp = new LanguageTagParser();
if (DEBUG) {
System.out.println(TAGS.languages.size() + "\t" + TAGS.languages);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -199,12 +199,8 @@ private void checkFile(PathChecker pathChecker, String fullFile) {
}
// XMLFileReader.read("noId", inputStreamReader, -1, true, myHandler);
} catch (XMLStreamException e) {
if (!logKnownIssue("cldrbug 10120", "XML reading issue")) {
warnln("Can't read " + fullFile);
} else {
throw (IllegalArgumentException)
new IllegalArgumentException("Can't read " + fullFile).initCause(e);
}
throw (IllegalArgumentException)
new IllegalArgumentException("Can't read " + fullFile).initCause(e);
} catch (Throwable e) {
if (r == null) throw e;
throw new IllegalArgumentException(" at " + r.getLocation(), e);
Expand Down

0 comments on commit 1550f0f

Please sign in to comment.