test/hotspot/jtreg/runtime/CommandLine/TraceExceptionsTest.java
author epavlova
Thu, 20 Jun 2019 11:42:33 -0700
changeset 55455 76647c08ce0c
parent 47216 71c04702a3d5
permissions -rw-r--r--
8225684: [AOT] vmTestbase/vm/oom/production/AlwaysOOMProduction tests fail with AOTed java.base Reviewed-by: kvn
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
41705
332239c052cc 8165687: Fix license and copyright headers in jd9 under hotspot/test
stsmirno
parents: 40631
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
25624
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
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 37297
diff changeset
    28
 * @library /test/lib
36851
03e2f4d0a421 8153737: Unsupported Module
chegar
parents: 35216
diff changeset
    29
 * @modules java.base/jdk.internal.misc
29678
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
40631
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 37297
diff changeset
    33
import jdk.test.lib.process.ProcessTools;
ed82623d7831 8157957: ClassNotFoundException: jdk.test.lib.JDKToolFinder
ctornqvi
parents: 37297
diff changeset
    34
import jdk.test.lib.process.OutputAnalyzer;
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    35
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    36
public class TraceExceptionsTest {
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    37
    public static void main(String[] args) throws Exception {
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    38
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    39
        ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
35216
71c463a17b3b 8141211: Convert TraceExceptions to Unified Logging
rprotacio
parents: 30604
diff changeset
    40
            "-Xlog:exceptions=info", "NoClassFound");
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    41
        OutputAnalyzer output = new OutputAnalyzer(pb.start());
37190
09d719d466a6 8146947: Remove PrintOopAddress rather than converting to UL
rprotacio
parents: 35216
diff changeset
    42
        output.shouldContain("<a 'java/lang/ClassNotFoundException'").shouldContain(": NoClassFound>");
25624
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    43
        output.shouldNotContain("<a 'java/lang/ClassNotFoundException'>");
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    44
        output.shouldHaveExitValue(1);
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    45
    }
b3bd733f04e9 8048933: -XX:+TraceExceptions output should include the message
coleenp
parents:
diff changeset
    46
}