From 2b2e8c5f5ce41e74221373bebe70c00f6d9dc2d9 Mon Sep 17 00:00:00 2001 From: "Steven R. Loomis" Date: Fri, 13 Sep 2024 00:50:06 -0500 Subject: [PATCH] CLDR-17949 hotfix for random ICU timezone breakage (#4050) --- .../java/org/unicode/cldr/unittest/TestSupplementalInfo.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/TestSupplementalInfo.java b/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/TestSupplementalInfo.java index 6c30b34f302..7955c30ce33 100644 --- a/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/TestSupplementalInfo.java +++ b/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/TestSupplementalInfo.java @@ -2032,6 +2032,10 @@ public void TestMetazones() { ImmutableSet.of("America/Montreal", "Asia/Barnaul", "Asia/Tomsk", "Europe/Kirov"); for (String timezoneRaw : TimeZone.getAvailableIDs()) { String timezone = TimeZone.getCanonicalID(timezoneRaw); + if (timezone.equals("Etc/Unknown")) { + System.err.println("CLDR-17949: Skipping " + timezone + " for raw " + timezoneRaw); + continue; + } String region = TimeZone.getRegion(timezone); if (!timezone.equals(timezoneRaw) || "001".equals(region)) { continue;