test/hotspot/jtreg/runtime/cds/appcds/condy/CondyHelloTest.java
author chegar
Thu, 17 Oct 2019 20:54:25 +0100
branchdatagramsocketimpl-branch
changeset 58679 9c3209ff7550
parent 58678 9cf78a70fa4f
parent 57705 7cf02b2c1455
permissions -rw-r--r--
datagramsocketimpl-branch: merge with default
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
49411
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
     1
/*
57567
b000362a89a0 8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds
coleenp
parents: 51990
diff changeset
     2
 * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved.
49411
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)
57567
b000362a89a0 8202339: [TESTBUG] Consolidate the tests in runtime/SharedArchiveFile and runtime/appcds
coleenp
parents: 51990
diff changeset
    28
 * @library /test/lib /test/hotspot/jtreg/runtime/cds/appcds
49411
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    29
 * @build CondyHello
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    30
 * @build sun.hotspot.WhiteBox CondyHelloTest CondyHelloApp
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    31
 * @run driver ClassFileInstaller -jar condy_hello.jar CondyHello CondyHelloApp
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    32
 * @run driver ClassFileInstaller -jar WhiteBox.jar sun.hotspot.WhiteBox
51990
6003e034cdd8 8209946: [TESTBUG] CDS tests should use "@run driver"
iklam
parents: 49987
diff changeset
    33
 * @run driver CondyHelloTest
49411
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    34
 */
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
import jdk.test.lib.process.OutputAnalyzer;
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    37
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    38
public class CondyHelloTest {
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    39
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    40
    static String classes[] = {
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    41
        "CondyHello",
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    42
        "CondyHelloApp",
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    43
    };
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
    public static void main(String[] args) throws Exception {
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    46
        String wbJar = ClassFileInstaller.getJarPath("WhiteBox.jar");
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    47
        String use_whitebox_jar = "-Xbootclasspath/a:" + wbJar;
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    48
        String appJar = ClassFileInstaller.getJarPath("condy_hello.jar");
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    49
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    50
        TestCommon.dump(appJar, TestCommon.list(classes), use_whitebox_jar);
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    51
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    52
        TestCommon.run("-XX:+UnlockDiagnosticVMOptions",
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    53
                       "-XX:+WhiteBoxAPI",
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    54
                       "-cp", appJar,
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    55
                       use_whitebox_jar,
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    56
                       "CondyHelloApp")
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    57
          .assertNormalExit();
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    58
    }
7a656b77a2d8 8198796: Create test case for CDS + condy
iklam
parents:
diff changeset
    59
}