24
24
/**
25
25
* @test
26
26
* @bug 8153391
27
- * @summary Verify javac behaves properly in absence of zip/jar FileSystemProvider
27
+ * @summary Verify javac behaves properly in JDK image limited to jdk.compiler module
28
28
* @library /tools/lib
29
29
* @modules jdk.compiler/com.sun.tools.javac.api
30
30
* jdk.compiler/com.sun.tools.javac.main
34
34
import java .io .IOException ;
35
35
import java .nio .file .Path ;
36
36
import java .nio .file .Paths ;
37
- import java .util .Arrays ;
38
- import java .util .List ;
39
37
40
38
import toolbox .JavacTask ;
41
39
import toolbox .JarTask ;
42
40
import toolbox .Task .Expect ;
43
41
import toolbox .Task .Mode ;
44
- import toolbox .Task .OutputKind ;
45
42
import toolbox .ToolBox ;
46
43
47
44
public class LimitedImage {
@@ -68,73 +65,39 @@ public static void main(String... args) throws IOException {
68
65
69
66
new JarTask (tb , testJar ).run ();
70
67
71
- List <String > actualOutput ;
72
- List <String > expectedOutput = Arrays .asList (
73
- "- compiler.err.no.zipfs.for.archive: " + testJar .toString ()
74
- );
75
-
76
68
//check proper diagnostics when zip/jar FS not present:
77
69
System .err .println ("Test " + testJar + " on classpath" );
78
- actualOutput = new JavacTask (tb , Mode .CMDLINE )
70
+ new JavacTask (tb , Mode .CMDLINE )
79
71
.classpath (testJar )
80
72
.options ("-XDrawDiagnostics" )
81
73
.files (testSource )
82
74
.outdir ("." )
83
- .run (Expect .FAIL )
84
- .writeAll ()
85
- .getOutputLines (OutputKind .DIRECT );
86
-
87
- if (!expectedOutput .equals (actualOutput )) {
88
- throw new AssertionError ("Unexpected output" );
89
- }
75
+ .run (Expect .SUCCESS );
90
76
91
77
System .err .println ("Test " + testJar + " on sourcepath" );
92
- actualOutput = new JavacTask (tb , Mode .CMDLINE )
78
+ new JavacTask (tb , Mode .CMDLINE )
93
79
.sourcepath (testJar )
94
80
.options ("-XDrawDiagnostics" )
95
81
.files (testSource )
96
82
.outdir ("." )
97
- .run (Expect .FAIL )
98
- .writeAll ()
99
- .getOutputLines (OutputKind .DIRECT );
100
-
101
- if (!expectedOutput .equals (actualOutput )) {
102
- throw new AssertionError ("Unexpected output" );
103
- }
83
+ .run (Expect .SUCCESS );
104
84
105
85
System .err .println ("Test " + testJar + " on modulepath" );
106
- actualOutput = new JavacTask (tb , Mode .CMDLINE )
86
+ new JavacTask (tb , Mode .CMDLINE )
107
87
.options ("-XDrawDiagnostics" ,
108
88
"--module-path" , testJar .toString ())
109
89
.files (testSource )
110
90
.outdir ("." )
111
- .run (Expect .FAIL )
112
- .writeAll ()
113
- .getOutputLines (OutputKind .DIRECT );
114
-
115
- if (!expectedOutput .equals (actualOutput )) {
116
- throw new AssertionError ("Unexpected output" );
117
- }
118
-
119
- expectedOutput = Arrays .asList (
120
- "- compiler.err.no.zipfs.for.archive: " + testJar .toString (),
121
- "1 error"
122
- );
91
+ .run (Expect .SUCCESS );
123
92
124
93
System .err .println ("Test directory containing " + testJar + " on modulepath" );
125
- actualOutput = new JavacTask (tb , Mode .CMDLINE )
94
+ new JavacTask (tb , Mode .CMDLINE )
126
95
.classpath ()
127
96
.options ("-XDrawDiagnostics" ,
128
97
"--module-path" , testJar .getParent ().toString ())
129
98
.files (testSource )
130
99
.outdir ("." )
131
- .run (Expect .FAIL )
132
- .writeAll ()
133
- .getOutputLines (OutputKind .DIRECT );
134
-
135
- if (!expectedOutput .equals (actualOutput )) {
136
- throw new AssertionError ("Unexpected output" );
137
- }
100
+ .run (Expect .SUCCESS );
138
101
}
139
102
140
103
}
0 commit comments