--- old/test/jdk/sun/util/resources/cldr/Bug8134384.java 2020-02-11 08:38:07.000000000 -0800 +++ new/test/jdk/sun/util/resources/cldr/Bug8134384.java 2020-02-11 08:38:07.000000000 -0800 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -23,7 +23,7 @@ /* * @test - * @bug 8134384 + * @bug 8134384 8234347 8236548 * @summary Tests CLDR TimeZoneNames has English names for all tzids * @run main/othervm -Djava.locale.providers=CLDR Bug8134384 */ @@ -43,12 +43,10 @@ String date1 = Date.from(Instant.parse("2015-06-21T00:00:00.00Z")).toString(); testParse(Locale.ENGLISH, date1, tz); testParse(Locale.US, date1, tz); - testParse(Locale.ROOT, date1, tz); // Winter solstice String date2 = Date.from(Instant.parse("2015-12-22T00:00:00.00Z")).toString(); testParse(Locale.ENGLISH, date2, tz); testParse(Locale.US, date2, tz); - testParse(Locale.ROOT, date2, tz); } } finally { TimeZone.setDefault(original);