Skip to content

Commit 21b62fe

Browse files
committedApr 29, 2022
8195589: T6587786.java failed after JDK-8189997
Reviewed-by: iris, vromero
1 parent 8190217 commit 21b62fe

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed
 

‎test/langtools/ProblemList.txt

-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ tools/javac/modules/SourceInSymlinkTest.java
5555
# javap
5656

5757
tools/javap/output/RepeatingTypeAnnotations.java 8057687 generic-all emit correct byte code an attributes for type annotations
58-
tools/javap/T6587786.java 8195589 generic-all T6587786.java failed after JDK-8189997
5958

6059
###########################################################################
6160
#

‎test/langtools/tools/javap/T6587786.java

+10-7
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,21 @@ public static void main(String[] args) throws Exception {
3636
}
3737

3838
public void run() throws IOException {
39-
javap("com.sun.javadoc.Doc", "com.sun.crypto.provider.ai");
40-
javap("com.sun.crypto.provider.ai", "com.sun.javadoc.ClassDoc");
39+
javap("jdk.javadoc.doclet.Doclet", "java.util.List");
40+
javap("java.util.List", "jdk.javadoc.doclet.StandardDoclet");
4141
}
4242

4343
void javap(String... args) {
4444
StringWriter sw = new StringWriter();
4545
PrintWriter out = new PrintWriter(sw);
4646
//sun.tools.javap.Main.entry(args);
47-
int rc = com.sun.tools.javap.Main.run(args, out);
48-
if (rc != 0)
49-
throw new Error("javap failed. rc=" + rc);
50-
out.close();
51-
System.out.println(sw.toString());
47+
try {
48+
int rc = com.sun.tools.javap.Main.run(args, out);
49+
if (rc != 0)
50+
throw new Error("javap failed. rc=" + rc);
51+
} finally {
52+
out.close();
53+
System.out.println(sw.toString());
54+
}
5255
}
5356
}

0 commit comments

Comments
 (0)
Please sign in to comment.