test/java/util/logging/ParentLoggersTest.java

Print this page




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     6498300
  27  *
  28  * @summary regression: parent loggers are not properly registered
  29  * @author  ss45998
  30  *
  31  * @build ParentLoggersTest
  32  * @run main/othervm ParentLoggersTest
  33  */
  34 
  35 /*
  36  * There are several original tests which were failed when
  37  * this regression was introduced. This is an extra test
  38  * to ensure that the parent loggers with the defined
  39  * .level property are implicitly registered.
  40  */
  41 
  42 import java.util.*;
  43 import java.io.*;
  44 import java.util.logging.*;
  45 
  46 public class ParentLoggersTest {
  47     static final LogManager  logMgr     = LogManager.getLogManager();
  48     static final PrintStream out        = System.out;
  49 
  50     static final boolean     PASSED     = true;
  51     static final boolean     FAILED     = false;
  52     static final String      MSG_PASSED = "ParentLoggersTest: passed";




  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     6498300
  27  *
  28  * @summary regression: parent loggers are not properly registered
  29  * @author  ss45998
  30  *
  31  * @build ParentLoggersTest
  32  * @run main ParentLoggersTest
  33  */
  34 
  35 /*
  36  * There are several original tests which were failed when
  37  * this regression was introduced. This is an extra test
  38  * to ensure that the parent loggers with the defined
  39  * .level property are implicitly registered.
  40  */
  41 
  42 import java.util.*;
  43 import java.io.*;
  44 import java.util.logging.*;
  45 
  46 public class ParentLoggersTest {
  47     static final LogManager  logMgr     = LogManager.getLogManager();
  48     static final PrintStream out        = System.out;
  49 
  50     static final boolean     PASSED     = true;
  51     static final boolean     FAILED     = false;
  52     static final String      MSG_PASSED = "ParentLoggersTest: passed";