1 /*
2 * Copyright (c) 2019, 2024, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
22 *
23 */
24
25 /*
26 * @test
27 * @summary Hello World test for dynamic archive
28 * @requires vm.cds
29 * @library /test/lib /test/hotspot/jtreg/runtime/cds/appcds /test/hotspot/jtreg/runtime/cds/appcds/test-classes
30 * @enablePreview
31 * @modules java.base/jdk.internal.value
32 * java.base/jdk.internal.vm.annotation
33 * @compile ../test-classes/HelloInlineClassApp.java
34 * @build jdk.test.whitebox.WhiteBox
35 * @run driver jdk.test.lib.helpers.ClassFileInstaller -jar hello_inline.jar HelloInlineClassApp HelloInlineClassApp$Point HelloInlineClassApp$Rectangle HelloInlineClassApp$ValueRecord
36 * @run driver jdk.test.lib.helpers.ClassFileInstaller jdk.test.whitebox.WhiteBox
37 * @run main/othervm -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Xbootclasspath/a:. HelloDynamicInlineClass
38 */
39
40 import jdk.test.lib.helpers.ClassFileInstaller;
41
42 public class HelloDynamicInlineClass extends DynamicArchiveTestBase {
43 public static void main(String[] args) throws Exception {
44 runTest(HelloDynamicInlineClass::test);
45 }
46
47 static void test() throws Exception {
48 String topArchiveName = getNewArchiveName("top");
49 String baseArchiveName = getNewArchiveName("base");
50 TestCommon.dumpBaseArchive(baseArchiveName, "--enable-preview", "-Xlog:cds");
51 doTest(baseArchiveName, topArchiveName);
52 }
53
54 private static void doTest(String baseArchiveName, String topArchiveName) throws Exception {
55 String appJar = ClassFileInstaller.getJarPath("hello_inline.jar");
56 String mainClass = "HelloInlineClassApp";
57 dump2(baseArchiveName, topArchiveName,
58 "--enable-preview",
59 "-Xlog:cds",
60 "-Xlog:cds+dynamic=debug",
61 "-cp", appJar, mainClass)
62 .assertNormalExit(output -> {
63 output.shouldContain("Written dynamic archive 0x");
64 });
65 run2(baseArchiveName, topArchiveName,
66 "--enable-preview",
67 "-Xlog:class+load",
68 "-Xlog:cds+dynamic=debug,cds=debug",
69 "-cp", appJar, mainClass)
70 .assertNormalExit(output -> {
71 output.shouldContain("HelloInlineClassApp$Point source: shared objects file")
72 .shouldHaveExitValue(0);
73 });
74 }
75 }