annotate test/runtime/finalStatic/FinalStatic.java @ 20218:828056cf311f

8040792: G1: Memory usage calculation uses sizeof(this) instead of sizeof(classname) Summary: A few locations in the code use sizeof(this) which returns the size of the pointer instead of sizeof(classname) which returns the size of the sum of its members. This change fixes these errors and adds a few tests. Reviewed-by: mgerdin, brutisso
author tschatzl
date Mon, 21 Jul 2014 09:40:19 +0200
parents 4638c4d7ff10
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
17640
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
1 /*
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
2 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
4 *
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
7 * published by the Free Software Foundation.
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
8 *
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
13 * accompanied this code).
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
14 *
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
18 *
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
21 * questions.
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
22 */
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
23
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
24 /*
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
25 * @test
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
26 * @bug 8028553
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
27 * @summary Test that VerifyError is not thrown when 'overriding' a static method.
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
28 * @run main FinalStatic
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
29 */
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
30
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
31 import java.lang.reflect.*;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
32 import jdk.internal.org.objectweb.asm.ClassWriter;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
33 import jdk.internal.org.objectweb.asm.MethodVisitor;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
34 import jdk.internal.org.objectweb.asm.Opcodes;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
35
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
36 /*
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
37 * class A { static final int m() {return FAIL; } }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
38 * class B extends A { int m() { return PASS; } }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
39 * class FinalStatic {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
40 * public static void main () {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
41 * Object b = new B();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
42 * b.m();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
43 * }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
44 * }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
45 */
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
46 public class FinalStatic {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
47
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
48 static final String CLASS_NAME_A = "A";
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
49 static final String CLASS_NAME_B = "B";
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
50 static final int FAILED = 0;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
51 static final int EXPECTED = 1234;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
52
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
53 static class TestClassLoader extends ClassLoader implements Opcodes {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
54
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
55 @Override
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
56 public Class findClass(String name) throws ClassNotFoundException {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
57 byte[] b;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
58 try {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
59 b = loadClassData(name);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
60 } catch (Throwable th) {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
61 // th.printStackTrace();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
62 throw new ClassNotFoundException("Loading error", th);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
63 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
64 return defineClass(name, b, 0, b.length);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
65 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
66
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
67 private byte[] loadClassData(String name) throws Exception {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
68 ClassWriter cw = new ClassWriter(0);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
69 MethodVisitor mv;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
70 switch (name) {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
71 case CLASS_NAME_A:
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
72 cw.visit(52, ACC_SUPER | ACC_PUBLIC, CLASS_NAME_A, null, "java/lang/Object", null);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
73 {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
74 mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
75 mv.visitCode();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
76 mv.visitVarInsn(ALOAD, 0);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
77 mv.visitMethodInsn(INVOKESPECIAL, "java/lang/Object", "<init>", "()V");
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
78 mv.visitInsn(RETURN);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
79 mv.visitMaxs(1, 1);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
80 mv.visitEnd();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
81
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
82 mv = cw.visitMethod(ACC_FINAL | ACC_STATIC, "m", "()I", null, null);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
83 mv.visitCode();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
84 mv.visitLdcInsn(FAILED);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
85 mv.visitInsn(IRETURN);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
86 mv.visitMaxs(1, 1);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
87 mv.visitEnd();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
88 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
89 break;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
90 case CLASS_NAME_B:
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
91 cw.visit(52, ACC_SUPER | ACC_PUBLIC, CLASS_NAME_B, null, CLASS_NAME_A, null);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
92 {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
93 mv = cw.visitMethod(ACC_PUBLIC, "<init>", "()V", null, null);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
94 mv.visitCode();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
95 mv.visitVarInsn(ALOAD, 0);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
96 mv.visitMethodInsn(INVOKESPECIAL, CLASS_NAME_A, "<init>", "()V");
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
97 mv.visitInsn(RETURN);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
98 mv.visitMaxs(1, 1);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
99 mv.visitEnd();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
100
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
101 mv = cw.visitMethod(ACC_PUBLIC, "m", "()I", null, null);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
102 mv.visitCode();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
103 mv.visitLdcInsn(EXPECTED);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
104 mv.visitInsn(IRETURN);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
105 mv.visitMaxs(1, 1);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
106 mv.visitEnd();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
107
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
108 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
109 break;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
110 default:
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
111 break;
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
112 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
113 cw.visitEnd();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
114
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
115 return cw.toByteArray();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
116 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
117 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
118
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
119 public static void main(String[] args) throws Exception {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
120 TestClassLoader tcl = new TestClassLoader();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
121 Class<?> a = tcl.loadClass(CLASS_NAME_A);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
122 Class<?> b = tcl.loadClass(CLASS_NAME_B);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
123 Object inst = b.newInstance();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
124 Method[] meths = b.getDeclaredMethods();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
125
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
126 Method m = meths[0];
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
127 int mod = m.getModifiers();
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
128 if ((mod & Modifier.FINAL) != 0) {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
129 throw new Exception("FAILED: " + m + " is FINAL");
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
130 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
131 if ((mod & Modifier.STATIC) != 0) {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
132 throw new Exception("FAILED: " + m + " is STATIC");
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
133 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
134
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
135 m.setAccessible(true);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
136 if (!m.invoke(inst).equals(EXPECTED)) {
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
137 throw new Exception("FAILED: " + EXPECTED + " from " + m);
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
138 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
139
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
140 System.out.println("Passed.");
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
141 }
4638c4d7ff10 8028553: The JVM should not throw VerifyError when 'overriding' a static final method in a superclass.
hseigel
parents:
diff changeset
142 }