8244173: Uncomment subtest in runtime/InvocationTests/invocationC1Tests.java

Reviewed-by: hseigel, iignatyev
This commit is contained in:
David Holmes 2020-04-30 19:18:28 -04:00
parent eddab115d8
commit a0d04ad0ae
2 changed files with 2 additions and 5 deletions
test/hotspot/jtreg/runtime/InvocationTests

@ -77,8 +77,6 @@ public class invocationC1Tests {
int major_version = klassbuf[6] << 8 | klassbuf[7];
runTest("invokespecial.Generator", String.valueOf(major_version));
runTest("invokeinterface.Generator", String.valueOf(major_version));
// Uncomment this test once JDK-8226588 is fixed
// runTest("invokevirtual.Generator", String.valueOf(major_version));
runTest("invokevirtual.Generator", String.valueOf(major_version));
}
}

@ -73,8 +73,7 @@ public class invokevirtualTests {
byte klassbuf[] = InMemoryJavaCompiler.compile("blah", "public class blah { }");
int major_version = klassbuf[6] << 8 | klassbuf[7];
runTest(String.valueOf(major_version), "-Xint");
// Uncomment the below test once JDK-8226588 is fixed
// runTest(String.valueOf(major_version), "-Xcomp");
runTest(String.valueOf(major_version), "-Xcomp");
// Test old class file version.
runTest("51", "-Xint"); // JDK-7