hotspot/test/runtime/CommandLine/TraceExceptionsTest.java
author rprotacio
Thu, 24 Mar 2016 13:25:10 -0400
changeset 37190 09d719d466a6
parent 35216 71c463a17b3b
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:
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
     1
/*
37190
09d719d466a6 8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents: 35216
diff changeset
     2
 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
     4
 *
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
     7
 * published by the Free Software Foundation.
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
     8
 *
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.    See the GNU General Public License
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    13
 * accompanied this code).
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    14
 *
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    18
 *
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    21
 * questions.
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    22
 */
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    23
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    24
/*
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    25
 * @test
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    26
 * @bug 8048933
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    27
 * @summary TraceExceptions output should have the exception message - useful for ClassNotFoundExceptions especially
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    28
 * @library /testlibrary
29678
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 28174
diff changeset
    29
 * @modules java.base/sun.misc
dd2f3932c21e 8075586: Add @modules as needed to the open hotspot tests
ykantser
parents: 28174
diff changeset
    30
 *          java.management
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    31
 */
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    32
30604
b8d532cb6420 8067013: Rename the com.oracle.java.testlibary package
ykantser
parents: 29678
diff changeset
    33
import jdk.test.lib.*;
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    34
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    35
public class TraceExceptionsTest {
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    36
    public static void main(String[] args) throws Exception {
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    37
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    38
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents: 30604
diff changeset
    39
            "-Xlog:exceptions=info", "NoClassFound");
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    40
        OutputAnalyzer output = new OutputAnalyzer(pb.start());
37190
09d719d466a6 8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents: 35216
diff changeset
    41
        output.shouldContain("<a 'java/lang/ClassNotFoundException'").shouldContain(": NoClassFound>");
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    42
        output.shouldNotContain("<a 'java/lang/ClassNotFoundException'>");
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    43
        output.shouldHaveExitValue(1);
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    44
    }
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    45
}