This repository was archived by the owner on Aug 27, 2022. It is now read-only.
File tree 2 files changed +2
-5
lines changed
test/hotspot/jtreg/runtime/InvocationTests
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,6 @@ public static void main(String args[]) throws Throwable {
77
77
int major_version = klassbuf [6 ] << 8 | klassbuf [7 ];
78
78
runTest ("invokespecial.Generator" , String .valueOf (major_version ));
79
79
runTest ("invokeinterface.Generator" , String .valueOf (major_version ));
80
-
81
- // Uncomment this test once JDK-8226588 is fixed
82
- // runTest("invokevirtual.Generator", String.valueOf(major_version));
80
+ runTest ("invokevirtual.Generator" , String .valueOf (major_version ));
83
81
}
84
82
}
Original file line number Diff line number Diff line change @@ -73,8 +73,7 @@ public static void main(String args[]) throws Throwable {
73
73
byte klassbuf [] = InMemoryJavaCompiler .compile ("blah" , "public class blah { }" );
74
74
int major_version = klassbuf [6 ] << 8 | klassbuf [7 ];
75
75
runTest (String .valueOf (major_version ), "-Xint" );
76
- // Uncomment the below test once JDK-8226588 is fixed
77
- // runTest(String.valueOf(major_version), "-Xcomp");
76
+ runTest (String .valueOf (major_version ), "-Xcomp" );
78
77
79
78
// Test old class file version.
80
79
runTest ("51" , "-Xint" ); // JDK-7
You can’t perform that action at this time.
0 commit comments