Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/jdk17u
Path: blob/master/test/hotspot/jtreg/runtime/8024804/RegisterNatives.java
64478 views
1
/*
2
* Copyright (c) 2013, 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
* @test
26
* @bug 8024804 8028741 8232613
27
* @summary interface method resolution should skip finding j.l.Object's registerNatives() and succeed in selecting class B's registerNatives()
28
* @run main RegisterNatives
29
*/
30
public class RegisterNatives {
31
interface I {
32
void registerNatives();
33
}
34
35
interface J extends I {}
36
37
interface K {
38
default public void registerNatives() { System.out.println("K"); }
39
}
40
41
static class B implements J {
42
public void registerNatives() { System.out.println("B"); }
43
}
44
45
static class C implements K {}
46
47
public static void main(String... args) {
48
System.out.println("Regression test for JDK-8024804, crash when InterfaceMethodref resolves to Object.registerNatives\n");
49
J val = new B();
50
try {
51
val.registerNatives();
52
} catch (IllegalAccessError e) {
53
System.out.println("TEST FAILS - JDK 8 JVMS, static and non-public methods of j.l.Object should be ignored during interface method resolution\n");
54
e.printStackTrace();
55
throw e;
56
}
57
C cval = new C();
58
try {
59
cval.registerNatives();
60
} catch (IllegalAccessError e) {
61
System.out.println("TEST FAILS - a default method named registerNatives should no longer be masked by removed Object.registerNatives\n");
62
e.printStackTrace();
63
throw e;
64
}
65
System.out.println("TEST PASSES - no IAE resulted\n");
66
}
67
}
68
69