jdk/test/java/util/logging/bundlesearch/ResourceBundleSearchTest.java
changeset 32649 2ee9017c7597
parent 19395 e31689b0bb67
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    45  * run these tests using othervm mode to ensure no interference from logging
    45  * run these tests using othervm mode to ensure no interference from logging
    46  * initialization by jtreg
    46  * initialization by jtreg
    47  */
    47  */
    48 public class ResourceBundleSearchTest {
    48 public class ResourceBundleSearchTest {
    49 
    49 
    50     private final static boolean DEBUG = false;
    50     private static final boolean DEBUG = false;
    51     private final static String LOGGER_PREFIX = "myLogger.";
    51     private static final String LOGGER_PREFIX = "myLogger.";
    52     private static int loggerNum = 0;
    52     private static int loggerNum = 0;
    53     private final static String PROP_RB_NAME = "ClassPathTestBundle";
    53     private static final String PROP_RB_NAME = "ClassPathTestBundle";
    54     private final static String TCCL_TEST_BUNDLE = "ContextClassLoaderTestBundle";
    54     private static final String TCCL_TEST_BUNDLE = "ContextClassLoaderTestBundle";
    55 
    55 
    56     private static int numPass = 0;
    56     private static int numPass = 0;
    57     private static int numFail = 0;
    57     private static int numFail = 0;
    58     private static List<String> msgs = new ArrayList<>();
    58     private static List<String> msgs = new ArrayList<>();
    59 
    59