Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit a0d04ad

Browse files
author
David Holmes
committedApr 30, 2020
8244173: Uncomment subtest in runtime/InvocationTests/invocationC1Tests.java
Reviewed-by: hseigel, iignatyev
1 parent eddab11 commit a0d04ad

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed
 

‎test/hotspot/jtreg/runtime/InvocationTests/invocationC1Tests.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ public static void main(String args[]) throws Throwable {
7777
int major_version = klassbuf[6] << 8 | klassbuf[7];
7878
runTest("invokespecial.Generator", String.valueOf(major_version));
7979
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));
8381
}
8482
}

‎test/hotspot/jtreg/runtime/InvocationTests/invokevirtualTests.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ public static void main(String args[]) throws Throwable {
7373
byte klassbuf[] = InMemoryJavaCompiler.compile("blah", "public class blah { }");
7474
int major_version = klassbuf[6] << 8 | klassbuf[7];
7575
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");
7877

7978
// Test old class file version.
8079
runTest("51", "-Xint"); // JDK-7

0 commit comments

Comments
 (0)