test/hotspot/jtreg/runtime/appcds/condy/CondyHelloTest.java
author lfoltan
Fri, 04 May 2018 12:14:09 -0400
changeset 49987 e4b3cc56e2b2
parent 49477 84f0f5df5afa
child 51990 6003e034cdd8
permissions -rw-r--r--
8189916: Dynamic Constant support for Sparc Summary: Change to the template interpreter to support dynamic constant on Sparc. Reviewed-by: coleenp, psandoz
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49411
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     1
/*
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     2
 * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     4
 *
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     7
 * published by the Free Software Foundation.
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     8
 *
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    13
 * accompanied this code).
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    14
 *
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    18
 *
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    21
 * questions.
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    22
 */
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    23
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    24
/*
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    25
 * @test
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    26
 * @summary Make sure CDS works with a minimal test case that uses a CONSTANT_Dynamic constant-pool entry
49987
e4b3cc56e2b2 8189916: Dynamic Constant support for Sparc
lfoltan
parents: 49477
diff changeset
    27
 * @requires (vm.cds)
49411
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    28
 * @modules java.base/jdk.internal.misc
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    29
 * @library /test/lib /test/hotspot/jtreg/runtime/appcds
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    30
 * @build CondyHello
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    31
 * @build sun.hotspot.WhiteBox CondyHelloTest CondyHelloApp
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    32
 * @run driver ClassFileInstaller -jar condy_hello.jar CondyHello CondyHelloApp
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    33
 * @run driver ClassFileInstaller -jar WhiteBox.jar sun.hotspot.WhiteBox
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    34
 * @run main CondyHelloTest
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    35
 */
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    36
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    37
import jdk.test.lib.process.OutputAnalyzer;
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    38
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    39
public class CondyHelloTest {
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    40
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    41
    static String classes[] = {
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    42
        "CondyHello",
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    43
        "CondyHelloApp",
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    44
    };
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    45
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    46
    public static void main(String[] args) throws Exception {
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    47
        String wbJar = ClassFileInstaller.getJarPath("WhiteBox.jar");
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    48
        String use_whitebox_jar = "-Xbootclasspath/a:" + wbJar;
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    49
        String appJar = ClassFileInstaller.getJarPath("condy_hello.jar");
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    50
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    51
        TestCommon.dump(appJar, TestCommon.list(classes), use_whitebox_jar);
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    52
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    53
        TestCommon.run("-XX:+UnlockDiagnosticVMOptions",
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    54
                       "-XX:+WhiteBoxAPI",
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    55
                       "-cp", appJar,
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    56
                       use_whitebox_jar,
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    57
                       "CondyHelloApp")
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    58
          .assertNormalExit();
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    59
    }
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    60
}