1 /*
2 * Copyright (c) 2016, 2022, 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 *
79
80 // Now, run with AppCDS with -Xshare:auto and CFLH
81 out = TestCommon.execAuto("-cp", appJar,
82 "-XX:+UnlockDiagnosticVMOptions",
83 "-XX:+WhiteBoxAPI", useWb,
84 "-agentlib:SimpleClassFileLoadHook=LoadMe,beforeHook,after_Hook",
85 "ClassFileLoadHook",
86 "" + ClassFileLoadHook.TestCaseId.SHARING_AUTO_CFLH_ON);
87
88 opts = (new CDSOptions()).setXShareMode("auto");
89 TestCommon.checkExec(out, opts);
90
91 // Now, run with AppCDS -Xshare:on and CFLH
92 out = TestCommon.exec(appJar,
93 "-XX:+UnlockDiagnosticVMOptions",
94 "-XX:+WhiteBoxAPI", useWb,
95 "-agentlib:SimpleClassFileLoadHook=LoadMe,beforeHook,after_Hook",
96 "ClassFileLoadHook",
97 "" + ClassFileLoadHook.TestCaseId.SHARING_ON_CFLH_ON);
98 TestCommon.checkExec(out);
99 }
100 }
|
1 /*
2 * Copyright (c) 2016, 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 *
79
80 // Now, run with AppCDS with -Xshare:auto and CFLH
81 out = TestCommon.execAuto("-cp", appJar,
82 "-XX:+UnlockDiagnosticVMOptions",
83 "-XX:+WhiteBoxAPI", useWb,
84 "-agentlib:SimpleClassFileLoadHook=LoadMe,beforeHook,after_Hook",
85 "ClassFileLoadHook",
86 "" + ClassFileLoadHook.TestCaseId.SHARING_AUTO_CFLH_ON);
87
88 opts = (new CDSOptions()).setXShareMode("auto");
89 TestCommon.checkExec(out, opts);
90
91 // Now, run with AppCDS -Xshare:on and CFLH
92 out = TestCommon.exec(appJar,
93 "-XX:+UnlockDiagnosticVMOptions",
94 "-XX:+WhiteBoxAPI", useWb,
95 "-agentlib:SimpleClassFileLoadHook=LoadMe,beforeHook,after_Hook",
96 "ClassFileLoadHook",
97 "" + ClassFileLoadHook.TestCaseId.SHARING_ON_CFLH_ON);
98 TestCommon.checkExec(out);
99
100 // JEP 483: if dumped with -XX:+AOTClassLinking, cannot use archive when CFLH
101 TestCommon.testDump(appJar, sharedClasses, useWb, "-XX:+AOTClassLinking");
102 out = TestCommon.exec(appJar,
103 "-XX:+UnlockDiagnosticVMOptions",
104 "-XX:+WhiteBoxAPI", useWb,
105 "-agentlib:SimpleClassFileLoadHook=LoadMe,beforeHook,after_Hook",
106 "-Xlog:cds",
107 "ClassFileLoadHook",
108 "" + ClassFileLoadHook.TestCaseId.SHARING_ON_CFLH_ON);
109 if (out.contains("Using AOT-linked classes: false")) {
110 // We are running with VM options that do not support -XX:+AOTClassLinking
111 out.shouldHaveExitValue(0);
112 } else {
113 out.shouldContain("CDS archive has aot-linked classes. It cannot be used when JVMTI ClassFileLoadHook is in use.");
114 out.shouldNotHaveExitValue(0);
115 }
116 }
117 }
|