8245241: Incorrect locale provider preference is not logged

Reviewed-by: joehw, dfuchs
This commit is contained in:
Naoto Sato 2020-05-21 13:55:06 -07:00
parent e3be308329
commit b5b6ae32d2
7 changed files with 111 additions and 114 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -26,8 +26,8 @@
package sun.util.locale.provider; package sun.util.locale.provider;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.text.DecimalFormat; import java.text.DecimalFormat;
import java.util.ServiceConfigurationError;
import java.util.spi.LocaleServiceProvider; import java.util.spi.LocaleServiceProvider;
/** /**
@ -50,16 +50,20 @@ public class HostLocaleProviderAdapter extends AuxLocaleProviderAdapter {
@SuppressWarnings("unchecked") @SuppressWarnings("unchecked")
protected <P extends LocaleServiceProvider> P findInstalledProvider(final Class<P> c) { protected <P extends LocaleServiceProvider> P findInstalledProvider(final Class<P> c) {
try { try {
Method getter = HostLocaleProviderAdapterImpl.class.getMethod( return (P)Class.forName(
"get" + c.getSimpleName(), (Class<?>[]) null); "sun.util.locale.provider.HostLocaleProviderAdapterImpl")
return (P)getter.invoke(null, (Object[]) null); .getMethod("get" + c.getSimpleName(), (Class<?>[]) null)
} catch (NoSuchMethodException | .invoke(null, (Object[]) null);
IllegalAccessException | } catch (ClassNotFoundException |
NoSuchMethodException ex) {
// permissible exceptions as platform may not support host adapter
return null;
} catch (IllegalAccessException |
IllegalArgumentException | IllegalArgumentException |
InvocationTargetException ex) { InvocationTargetException ex) {
LocaleServiceProviderPool.config(HostLocaleProviderAdapter.class, ex.toString()); throw new ServiceConfigurationError(
"Host locale provider cannot be located.", ex);
} }
return null;
} }
/** /**

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -25,6 +25,7 @@
package sun.util.locale.provider; package sun.util.locale.provider;
import java.lang.reflect.InvocationTargetException;
import java.text.spi.BreakIteratorProvider; import java.text.spi.BreakIteratorProvider;
import java.text.spi.CollatorProvider; import java.text.spi.CollatorProvider;
import java.text.spi.DateFormatProvider; import java.text.spi.DateFormatProvider;
@ -37,6 +38,7 @@ import java.util.List;
import java.util.Locale; import java.util.Locale;
import java.util.Map; import java.util.Map;
import java.util.ResourceBundle; import java.util.ResourceBundle;
import java.util.ServiceConfigurationError;
import java.util.Set; import java.util.Set;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ConcurrentMap;
@ -50,6 +52,8 @@ import sun.security.action.GetPropertyAction;
import sun.text.spi.JavaTimeDateTimePatternProvider; import sun.text.spi.JavaTimeDateTimePatternProvider;
import sun.util.spi.CalendarProvider; import sun.util.spi.CalendarProvider;
import static java.lang.System.*;
/** /**
* The LocaleProviderAdapter abstract class. * The LocaleProviderAdapter abstract class.
* *
@ -60,7 +64,7 @@ public abstract class LocaleProviderAdapter {
/** /**
* Adapter type. * Adapter type.
*/ */
public static enum Type { public enum Type {
JRE("sun.util.locale.provider.JRELocaleProviderAdapter", "sun.util.resources", "sun.text.resources"), JRE("sun.util.locale.provider.JRELocaleProviderAdapter", "sun.util.resources", "sun.text.resources"),
CLDR("sun.util.cldr.CLDRLocaleProviderAdapter", "sun.util.resources.cldr", "sun.text.resources.cldr"), CLDR("sun.util.cldr.CLDRLocaleProviderAdapter", "sun.util.resources.cldr", "sun.text.resources.cldr"),
SPI("sun.util.locale.provider.SPILocaleProviderAdapter"), SPI("sun.util.locale.provider.SPILocaleProviderAdapter"),
@ -71,11 +75,11 @@ public abstract class LocaleProviderAdapter {
private final String UTIL_RESOURCES_PACKAGE; private final String UTIL_RESOURCES_PACKAGE;
private final String TEXT_RESOURCES_PACKAGE; private final String TEXT_RESOURCES_PACKAGE;
private Type(String className) { Type(String className) {
this(className, null, null); this(className, null, null);
} }
private Type(String className, String util, String text) { Type(String className, String util, String text) {
CLASSNAME = className; CLASSNAME = className;
UTIL_RESOURCES_PACKAGE = util; UTIL_RESOURCES_PACKAGE = util;
TEXT_RESOURCES_PACKAGE = text; TEXT_RESOURCES_PACKAGE = text;
@ -113,12 +117,13 @@ public abstract class LocaleProviderAdapter {
/** /**
* Adapter lookup cache. * Adapter lookup cache.
*/ */
private static ConcurrentMap<Class<? extends LocaleServiceProvider>, ConcurrentMap<Locale, LocaleProviderAdapter>> private static final ConcurrentMap<Class<? extends LocaleServiceProvider>, ConcurrentMap<Locale, LocaleProviderAdapter>>
adapterCache = new ConcurrentHashMap<>(); adapterCache = new ConcurrentHashMap<>();
static { static {
String order = GetPropertyAction.privilegedGetProperty("java.locale.providers"); String order = GetPropertyAction.privilegedGetProperty("java.locale.providers");
List<Type> typeList = new ArrayList<>(); ArrayList<Type> typeList = new ArrayList<>();
String invalidTypeMessage = null;
// Check user specified adapter preference // Check user specified adapter preference
if (order != null && !order.isEmpty()) { if (order != null && !order.isEmpty()) {
@ -133,10 +138,9 @@ public abstract class LocaleProviderAdapter {
if (!typeList.contains(aType)) { if (!typeList.contains(aType)) {
typeList.add(aType); typeList.add(aType);
} }
} catch (IllegalArgumentException | UnsupportedOperationException e) { } catch (IllegalArgumentException e) {
// could be caused by the user specifying wrong // construct a log message.
// provider name or format in the system property invalidTypeMessage = "Invalid locale provider adapter \"" + type + "\" ignored.";
LocaleServiceProviderPool.config(LocaleProviderAdapter.class, e.toString());
} }
} }
} }
@ -144,7 +148,7 @@ public abstract class LocaleProviderAdapter {
defaultLocaleProviderAdapter = Type.CLDR; defaultLocaleProviderAdapter = Type.CLDR;
if (!typeList.isEmpty()) { if (!typeList.isEmpty()) {
// bona fide preference exists // bona fide preference exists
if (!(typeList.contains(Type.CLDR) || (typeList.contains(Type.JRE)))) { if (!(typeList.contains(Type.CLDR) || typeList.contains(Type.JRE))) {
// Append FALLBACK as the last resort when no ResourceBundleBasedAdapter is available. // Append FALLBACK as the last resort when no ResourceBundleBasedAdapter is available.
typeList.add(Type.FALLBACK); typeList.add(Type.FALLBACK);
defaultLocaleProviderAdapter = Type.FALLBACK; defaultLocaleProviderAdapter = Type.FALLBACK;
@ -155,6 +159,15 @@ public abstract class LocaleProviderAdapter {
typeList.add(Type.JRE); typeList.add(Type.JRE);
} }
adapterPreference = Collections.unmodifiableList(typeList); adapterPreference = Collections.unmodifiableList(typeList);
// Emit logs, if any, after 'adapterPreference' is initialized which is needed
// for logging.
if (invalidTypeMessage != null) {
// could be caused by the user specifying wrong
// provider name or format in the system property
getLogger(LocaleProviderAdapter.class.getCanonicalName())
.log(Logger.Level.INFO, invalidTypeMessage);
}
} }
/** /**
@ -167,31 +180,26 @@ public abstract class LocaleProviderAdapter {
case SPI: case SPI:
case HOST: case HOST:
case FALLBACK: case FALLBACK:
LocaleProviderAdapter adapter = null; LocaleProviderAdapter adapter = adapterInstances.get(type);
LocaleProviderAdapter cached = adapterInstances.get(type); if (adapter == null) {
if (cached == null) {
try { try {
// lazily load adapters here // lazily load adapters here
@SuppressWarnings("deprecation") adapter = (LocaleProviderAdapter)Class.forName(type.getAdapterClassName())
Object tmp = Class.forName(type.getAdapterClassName()).newInstance(); .getDeclaredConstructor().newInstance();
adapter = (LocaleProviderAdapter)tmp; LocaleProviderAdapter cached = adapterInstances.putIfAbsent(type, adapter);
cached = adapterInstances.putIfAbsent(type, adapter);
if (cached != null) { if (cached != null) {
adapter = cached; adapter = cached;
} }
} catch (ClassNotFoundException | } catch (NoSuchMethodException |
InvocationTargetException |
ClassNotFoundException |
IllegalAccessException | IllegalAccessException |
InstantiationException | InstantiationException |
UnsupportedOperationException e) { UnsupportedOperationException e) {
LocaleServiceProviderPool.config(LocaleProviderAdapter.class, e.toString()); throw new ServiceConfigurationError("Locale provider adapter \"" +
adapterInstances.putIfAbsent(type, NONEXISTENT_ADAPTER); type + "\"cannot be instantiated.", e);
if (defaultLocaleProviderAdapter == type) {
defaultLocaleProviderAdapter = Type.FALLBACK;
} }
} }
} else if (cached != NONEXISTENT_ADAPTER) {
adapter = cached;
}
return adapter; return adapter;
default: default:
throw new InternalError("unknown locale data adapter type"); throw new InternalError("unknown locale data adapter type");
@ -440,14 +448,4 @@ public abstract class LocaleProviderAdapter {
public abstract LocaleResources getLocaleResources(Locale locale); public abstract LocaleResources getLocaleResources(Locale locale);
public abstract Locale[] getAvailableLocales(); public abstract Locale[] getAvailableLocales();
private static final LocaleProviderAdapter NONEXISTENT_ADAPTER = new NonExistentAdapter();
private static final class NonExistentAdapter extends FallbackLocaleProviderAdapter {
@Override
public LocaleProviderAdapter.Type getAdapterType() {
return null;
}
private NonExistentAdapter() {};
}
} }

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2005, 2019, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2005, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -38,7 +38,6 @@ import java.util.Set;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap; import java.util.concurrent.ConcurrentMap;
import java.util.spi.LocaleServiceProvider; import java.util.spi.LocaleServiceProvider;
import sun.util.logging.PlatformLogger;
/** /**
* An instance of this class holds a set of the third party implementations of a particular * An instance of this class holds a set of the third party implementations of a particular
@ -121,11 +120,6 @@ public final class LocaleServiceProviderPool {
providerClass = c; providerClass = c;
} }
static void config(Class<? extends Object> caller, String message) {
PlatformLogger logger = PlatformLogger.getLogger(caller.getCanonicalName());
logger.config(message);
}
/** /**
* Lazy loaded set of available locales. * Lazy loaded set of available locales.
* Loading all locales is a very long operation. * Loading all locales is a very long operation.
@ -282,7 +276,8 @@ public final class LocaleServiceProviderPool {
if (providersObj != null) { if (providersObj != null) {
return providersObj; return providersObj;
} else if (isObjectProvider) { } else if (isObjectProvider) {
config(LocaleServiceProviderPool.class, System.getLogger(LocaleServiceProviderPool.class.getCanonicalName())
.log(System.Logger.Level.INFO,
"A locale sensitive service object provider returned null, " + "A locale sensitive service object provider returned null, " +
"which should not happen. Provider: " + lsp + " Locale: " + locale); "which should not happen. Provider: " + lsp + " Locale: " + locale);
} }
@ -341,9 +336,8 @@ public final class LocaleServiceProviderPool {
// ResourceBundle.Control.getCandidateLocales. The result // ResourceBundle.Control.getCandidateLocales. The result
// returned by getCandidateLocales are already normalized // returned by getCandidateLocales are already normalized
// (no extensions) for service look up. // (no extensions) for service look up.
List<Locale> lookupLocales = Control.getNoFallbackControl(Control.FORMAT_DEFAULT) return Control.getNoFallbackControl(Control.FORMAT_DEFAULT)
.getCandidateLocales("", locale); .getCandidateLocales("", locale);
return lookupLocales;
} }
/** /**
@ -370,7 +364,8 @@ public final class LocaleServiceProviderPool {
// should have well-formed fields except // should have well-formed fields except
// for ja_JP_JP and th_TH_TH. Therefore, // for ja_JP_JP and th_TH_TH. Therefore,
// it should never enter in this catch clause. // it should never enter in this catch clause.
config(LocaleServiceProviderPool.class, System.getLogger(LocaleServiceProviderPool.class.getCanonicalName())
.log(System.Logger.Level.INFO,
"A locale(" + locale + ") has non-empty extensions, but has illformed fields."); "A locale(" + locale + ") has non-empty extensions, but has illformed fields.");
// Fallback - script field will be lost. // Fallback - script field will be lost.
@ -402,7 +397,7 @@ public final class LocaleServiceProviderPool {
* @param params provider specific params * @param params provider specific params
* @return localized object from the provider * @return localized object from the provider
*/ */
public S getObject(P lsp, S getObject(P lsp,
Locale locale, Locale locale,
String key, String key,
Object... params); Object... params);

View File

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2012, 2018, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2012, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -43,9 +43,9 @@ import java.text.spi.NumberFormatProvider;
import java.util.Arrays; import java.util.Arrays;
import java.util.Locale; import java.util.Locale;
import java.util.Map; import java.util.Map;
import java.util.ServiceConfigurationError;
import java.util.ServiceLoader; import java.util.ServiceLoader;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.spi.CalendarDataProvider; import java.util.spi.CalendarDataProvider;
import java.util.spi.CalendarNameProvider; import java.util.spi.CalendarNameProvider;
import java.util.spi.CurrencyNameProvider; import java.util.spi.CurrencyNameProvider;
@ -72,7 +72,7 @@ public class SPILocaleProviderAdapter extends AuxLocaleProviderAdapter {
@Override @Override
protected <P extends LocaleServiceProvider> P findInstalledProvider(final Class<P> c) { protected <P extends LocaleServiceProvider> P findInstalledProvider(final Class<P> c) {
try { try {
return AccessController.doPrivileged(new PrivilegedExceptionAction<P>() { return AccessController.doPrivileged(new PrivilegedExceptionAction<>() {
@Override @Override
@SuppressWarnings(value={"unchecked", "deprecation"}) @SuppressWarnings(value={"unchecked", "deprecation"})
public P run() { public P run() {
@ -91,8 +91,8 @@ public class SPILocaleProviderAdapter extends AuxLocaleProviderAdapter {
} catch (ClassNotFoundException | } catch (ClassNotFoundException |
InstantiationException | InstantiationException |
IllegalAccessException e) { IllegalAccessException e) {
LocaleServiceProviderPool.config(SPILocaleProviderAdapter.class, e.toString()); throw new ServiceConfigurationError(
return null; "SPI locale provider cannot be instantiated.", e);
} }
} }
@ -102,9 +102,9 @@ public class SPILocaleProviderAdapter extends AuxLocaleProviderAdapter {
} }
}); });
} catch (PrivilegedActionException e) { } catch (PrivilegedActionException e) {
LocaleServiceProviderPool.config(SPILocaleProviderAdapter.class, e.toString()); throw new ServiceConfigurationError(
"SPI locale provider cannot be instantiated.", e);
} }
return null;
} }
/* /*
@ -112,7 +112,7 @@ public class SPILocaleProviderAdapter extends AuxLocaleProviderAdapter {
* following "<provider class name>Delegate" convention. * following "<provider class name>Delegate" convention.
*/ */
private interface Delegate<P extends LocaleServiceProvider> { private interface Delegate<P extends LocaleServiceProvider> {
default public void addImpl(P impl) { default void addImpl(P impl) {
for (Locale l : impl.getAvailableLocales()) { for (Locale l : impl.getAvailableLocales()) {
getDelegateMap().putIfAbsent(l, impl); getDelegateMap().putIfAbsent(l, impl);
} }
@ -121,7 +121,7 @@ public class SPILocaleProviderAdapter extends AuxLocaleProviderAdapter {
/* /*
* Obtain the real SPI implementation, using locale fallback * Obtain the real SPI implementation, using locale fallback
*/ */
default public P getImpl(Locale locale) { default P getImpl(Locale locale) {
for (Locale l : LocaleServiceProviderPool.getLookupLocales(locale.stripExtensions())) { for (Locale l : LocaleServiceProviderPool.getLookupLocales(locale.stripExtensions())) {
P ret = getDelegateMap().get(l); P ret = getDelegateMap().get(l);
if (ret != null) { if (ret != null) {
@ -131,13 +131,13 @@ public class SPILocaleProviderAdapter extends AuxLocaleProviderAdapter {
return null; return null;
} }
public Map<Locale, P> getDelegateMap(); Map<Locale, P> getDelegateMap();
default public Locale[] getAvailableLocalesDelegate() { default Locale[] getAvailableLocalesDelegate() {
return getDelegateMap().keySet().stream().toArray(Locale[]::new); return getDelegateMap().keySet().toArray(new Locale[0]);
} }
default public boolean isSupportedLocaleDelegate(Locale locale) { default boolean isSupportedLocaleDelegate(Locale locale) {
Map<Locale, P> map = getDelegateMap(); Map<Locale, P> map = getDelegateMap();
Locale override = CalendarDataUtility.findRegionOverride(locale); Locale override = CalendarDataUtility.findRegionOverride(locale);

View File

@ -1,34 +0,0 @@
/*
* Copyright (c) 2012, 2014, 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
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package sun.util.locale.provider;
/**
* LocaleProviderAdapter implementation for the Unix locale data
*
* @author Naoto Sato
*/
public class HostLocaleProviderAdapterImpl {
}

View File

@ -23,10 +23,16 @@
import java.text.*; import java.text.*;
import java.text.spi.*; import java.text.spi.*;
import java.util.*; import java.util.*;
import java.util.logging.Level;
import java.util.logging.LogManager;
import java.util.logging.LogRecord;
import java.util.logging.StreamHandler;
import java.util.spi.*; import java.util.spi.*;
import java.util.stream.IntStream; import java.util.stream.IntStream;
import sun.util.locale.provider.LocaleProviderAdapter; import sun.util.locale.provider.LocaleProviderAdapter;
import static java.util.logging.LogManager.*;
public class LocaleProviders { public class LocaleProviders {
private static final boolean IS_WINDOWS = System.getProperty("os.name").startsWith("Windows"); private static final boolean IS_WINDOWS = System.getProperty("os.name").startsWith("Windows");
@ -92,6 +98,10 @@ public class LocaleProviders {
bug8232860Test(); bug8232860Test();
break; break;
case "bug8245241Test":
bug8245241Test(args[1]);
break;
default: default:
throw new RuntimeException("Test method '"+methodName+"' not found."); throw new RuntimeException("Test method '"+methodName+"' not found.");
} }
@ -227,7 +237,7 @@ public class LocaleProviders {
System.out.println(new SimpleDateFormat("z", new Locale(lang, ctry)).parse("UTC")); System.out.println(new SimpleDateFormat("z", new Locale(lang, ctry)).parse("UTC"));
} catch (ParseException pe) { } catch (ParseException pe) {
// ParseException is fine in this test, as it's not "UTC" // ParseException is fine in this test, as it's not "UTC"
} }
} }
static void bug8013903Test() { static void bug8013903Test() {
@ -374,4 +384,24 @@ public class LocaleProviders {
"provider is not HOST: " + type); "provider is not HOST: " + type);
} }
} }
static void bug8245241Test(String expected) {
LogRecord[] lra = new LogRecord[1];
StreamHandler handler = new StreamHandler() {
@Override
public void publish(LogRecord record) {
lra[0] = record;
}
};
getLogManager().getLogger("").addHandler(handler);
DateFormat.getDateInstance(); // this will init LocaleProviderAdapter
handler.flush();
if (lra[0] == null ||
lra[0].getLevel() != Level.INFO ||
!lra[0].getMessage().equals(expected)) {
throw new RuntimeException("Expected log was not emitted. LogRecord: " + lra[0]);
}
}
} }

View File

@ -25,7 +25,7 @@
* @test * @test
* @bug 6336885 7196799 7197573 7198834 8000245 8000615 8001440 8008577 * @bug 6336885 7196799 7197573 7198834 8000245 8000615 8001440 8008577
* 8010666 8013086 8013233 8013903 8015960 8028771 8054482 8062006 * 8010666 8013086 8013233 8013903 8015960 8028771 8054482 8062006
* 8150432 8215913 8220227 8228465 8232871 8232860 8236495 * 8150432 8215913 8220227 8228465 8232871 8232860 8236495 8245241
* @summary tests for "java.locale.providers" system property * @summary tests for "java.locale.providers" system property
* @library /test/lib * @library /test/lib
* @build LocaleProviders * @build LocaleProviders
@ -162,6 +162,10 @@ public class LocaleProvidersRun {
//testing 8232860 fix. (macOS/Windows only) //testing 8232860 fix. (macOS/Windows only)
testRun("HOST", "bug8232860Test", "", "", ""); testRun("HOST", "bug8232860Test", "", "", "");
//testing 8245241 fix.
testRun("FOO", "bug8245241Test",
"Invalid locale provider adapter \"FOO\" ignored.", "", "");
} }
private static void testRun(String prefList, String methodName, private static void testRun(String prefList, String methodName,