Skip to content

Commit

Permalink
Merge commit 'e3e6fd35fb0e58009c80b47e6d3e21a2c93640c0' into BETA_JAVA22
Browse files Browse the repository at this point in the history
  • Loading branch information
jarthana committed Mar 7, 2024
2 parents db1c71d + e3e6fd3 commit beaa2ee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7036,6 +7036,8 @@ public void testBug499037_010_since_9() {
options);
}
public void testGH1762() {
if (this.complianceLevel < ClassFileConstants.JDK1_7)
return; // uses t-w-r
runLeakTest(
new String[] {
"X.java",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ public static Test suite() {
standardTests.add(ManifestAnalyzerTest.class);
standardTests.add(InitializationTests.class);
standardTests.add(ResourceLeakTests.class);
standardTests.add(ResourceLeakAnnotatedTests.class);
standardTests.add(PackageBindingTest.class);

// add all javadoc tests
Expand Down Expand Up @@ -142,6 +141,8 @@ public static Test suite() {
since_1_7.add(PolymorphicSignatureTest.class);
since_1_7.add(Compliance_1_7.class);
since_1_7.add(MethodHandleTest.class);
since_1_7.add(ResourceLeakAnnotatedTests.class);


ArrayList since_1_8 = new ArrayList();
since_1_8.add(NegativeTypeAnnotationTest.class);
Expand Down

0 comments on commit beaa2ee

Please sign in to comment.