hotspot/test/runtime/logging/ExceptionsTest.java
author rprotacio
Thu, 24 Mar 2016 13:25:10 -0400
changeset 37190 09d719d466a6
parent 35894 e78da4fa1a26
child 37297 d65d53a0ecc7
permissions -rw-r--r--
8146947: Remove PrintOopAddress rather than converting to UL Summary: Deprecated PrintOopAddress and made functionality default Reviewed-by: coleenp, stefank
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
     1
/*
35477
7a00b08d27bc 8144953: runtime/CommandLine/TraceExceptionsTest.java fails when exception is thrown in compiled code
rprotacio
parents: 35216
diff changeset
     2
 * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
     4
 *
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
     7
 * published by the Free Software Foundation.
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
     8
 *
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.    See the GNU General Public License
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    13
 * accompanied this code).
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    14
 *
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    18
 *
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    21
 * questions.
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    22
 */
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    23
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    24
/*
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    25
 * @test
35894
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    26
 * @bug 8141211 8147477
35859
03ccd6738bc4 8146137: runtime/logging/ExceptionsTest.java fails on embedded and ARM test
rprotacio
parents: 35858
diff changeset
    27
 * @summary exceptions=info output should have an exception message for interpreter methods
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    28
 * @library /testlibrary
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    29
 * @modules java.base/sun.misc
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    30
 *          java.management
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    31
 * @build jdk.test.lib.OutputAnalyzer jdk.test.lib.ProcessTools
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    32
 * @run driver ExceptionsTest
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    33
 */
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    34
35894
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    35
import java.io.File;
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    36
import java.util.Map;
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    37
import jdk.test.lib.OutputAnalyzer;
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    38
import jdk.test.lib.ProcessTools;
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    39
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    40
public class ExceptionsTest {
35894
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    41
    static void updateEnvironment(ProcessBuilder pb, String environmentVariable, String value) {
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    42
        Map<String, String> env = pb.environment();
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    43
        env.put(environmentVariable, value);
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    44
    }
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    45
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    46
    static void analyzeOutputOn(ProcessBuilder pb) throws Exception {
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    47
        OutputAnalyzer output = new OutputAnalyzer(pb.start());
37190
09d719d466a6 8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents: 35894
diff changeset
    48
        output.shouldContain("<a 'java/lang/RuntimeException'").shouldContain(": Test exception 1 for logging>");
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    49
        output.shouldContain(" thrown in interpreter method ");
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    50
        output.shouldHaveExitValue(0);
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    51
    }
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    52
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    53
    static void analyzeOutputOff(ProcessBuilder pb) throws Exception {
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    54
        OutputAnalyzer output = new OutputAnalyzer(pb.start());
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    55
        output.shouldNotContain("[exceptions]");
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    56
        output.shouldHaveExitValue(0);
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    57
    }
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    58
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    59
    public static void main(String[] args) throws Exception {
35858
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35477
diff changeset
    60
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder("-Xlog:exceptions=info",
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35477
diff changeset
    61
                                                                  InternalClass.class.getName());
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    62
        analyzeOutputOn(pb);
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    63
35858
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35477
diff changeset
    64
        pb = ProcessTools.createJavaProcessBuilder("-XX:+TraceExceptions",
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35477
diff changeset
    65
                                                   InternalClass.class.getName());
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    66
        analyzeOutputOn(pb);
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    67
35858
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35477
diff changeset
    68
        pb = ProcessTools.createJavaProcessBuilder("-Xlog:exceptions=off",
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35477
diff changeset
    69
                                                   InternalClass.class.getName());
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    70
        analyzeOutputOff(pb);
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    71
35858
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35477
diff changeset
    72
        pb = ProcessTools.createJavaProcessBuilder("-XX:-TraceExceptions",
6e704583a38f 8146435: [TESTBUG] Logging tests are failing intermittently on windows when executed by JPRT
rprotacio
parents: 35477
diff changeset
    73
                                                   InternalClass.class.getName());
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    74
        analyzeOutputOff(pb);
35894
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    75
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    76
        pb = ProcessTools.createJavaProcessBuilder(InternalClass.class.getName());
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    77
        updateEnvironment(pb, "_JAVA_OPTIONS", "-XX:+TraceExceptions");
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    78
        analyzeOutputOn(pb);
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    79
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    80
        pb = ProcessTools.createJavaProcessBuilder(InternalClass.class.getName());
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    81
        updateEnvironment(pb, "JAVA_TOOL_OPTIONS", "-Xlog:exceptions=info -XX:-TraceExceptions");
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    82
        analyzeOutputOff(pb);
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    83
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    84
        pb = ProcessTools.createJavaProcessBuilder("-XX:VMOptionsFile=" + System.getProperty("test.src", ".")
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    85
                                                   + File.separator + "ExceptionsTest_options_file",
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    86
                                                   InternalClass.class.getName());
e78da4fa1a26 8147477: com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java is failing for the jdk9/hs snapshot control job
ddmitriev
parents: 35859
diff changeset
    87
        analyzeOutputOn(pb);
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    88
    }
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    89
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    90
    public static class InternalClass {
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    91
        public static void main(String[] args) throws Exception {
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    92
            try {
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    93
                throw new RuntimeException("Test exception 1 for logging");
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    94
            } catch (Exception e) {
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    95
                System.out.println("Exception 1 caught.");
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    96
            }
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    97
        }
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    98
    }
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents:
diff changeset
    99
}