Skip to content

Commit 905bcbe

Browse files
committedJun 7, 2022
8286571: java source launcher from a minimal jdk image containing jdk.compiler fails with --enable-preview option
Reviewed-by: jlahoda
1 parent 8d28734 commit 905bcbe

File tree

3 files changed

+39
-47
lines changed

3 files changed

+39
-47
lines changed
 

‎src/jdk.compiler/share/classes/module-info.java

+1
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@
7878
*/
7979
module jdk.compiler {
8080
requires transitive java.compiler;
81+
requires jdk.zipfs;
8182

8283
exports com.sun.source.doctree;
8384
exports com.sun.source.tree;

‎test/jdk/tools/launcher/SourceMode.java

+29-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/**
2525
* @test
26-
* @bug 8192920 8204588 8210275
26+
* @bug 8192920 8204588 8210275 8286571
2727
* @summary Test source mode
2828
* @modules jdk.compiler jdk.jlink
2929
* @run main SourceMode
@@ -32,6 +32,7 @@
3232

3333
import java.io.IOException;
3434
import java.io.PrintStream;
35+
import java.io.PrintWriter;
3536
import java.nio.file.Files;
3637
import java.nio.file.Path;
3738
import java.nio.file.Paths;
@@ -106,6 +107,33 @@ void testSimpleJava() throws IOException {
106107
show(tr);
107108
}
108109

110+
// java --source N --enable-preview Simple.java hello
111+
// on minimal jdk image containing jdk.compiler
112+
@Test
113+
void test8286571() throws IOException {
114+
starting("test8286571");
115+
var pw = new PrintWriter(System.out);
116+
int rc = ToolProvider.findFirst("jlink").orElseThrow().run(
117+
pw, pw,
118+
"--add-modules",
119+
"jdk.compiler",
120+
"--output",
121+
"comp_only");
122+
if (rc != 0)
123+
throw new AssertionError("Jlink failed: rc = " + rc);
124+
Path file = getSimpleFile("Simple.java", false);
125+
TestResult tr = doExec(
126+
Path.of("comp_only", "bin", isWindows ? "java.exe" : "java").toString(),
127+
"--source", thisVersion,
128+
"--enable-preview",
129+
file.toString(), "hello");
130+
if (!tr.isOK())
131+
error(tr, "Bad exit code: " + tr.exitValue);
132+
if (!tr.contains("[hello]"))
133+
error(tr, "Expected output not found");
134+
show(tr);
135+
}
136+
109137
// java --source N simple 1 2 3
110138
@Test
111139
void testSimple() throws IOException {

‎test/langtools/tools/javac/file/LimitedImage.java

+9-46
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/**
2525
* @test
2626
* @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
2828
* @library /tools/lib
2929
* @modules jdk.compiler/com.sun.tools.javac.api
3030
* jdk.compiler/com.sun.tools.javac.main
@@ -34,14 +34,11 @@
3434
import java.io.IOException;
3535
import java.nio.file.Path;
3636
import java.nio.file.Paths;
37-
import java.util.Arrays;
38-
import java.util.List;
3937

4038
import toolbox.JavacTask;
4139
import toolbox.JarTask;
4240
import toolbox.Task.Expect;
4341
import toolbox.Task.Mode;
44-
import toolbox.Task.OutputKind;
4542
import toolbox.ToolBox;
4643

4744
public class LimitedImage {
@@ -68,73 +65,39 @@ public static void main(String... args) throws IOException {
6865

6966
new JarTask(tb, testJar).run();
7067

71-
List<String> actualOutput;
72-
List<String> expectedOutput = Arrays.asList(
73-
"- compiler.err.no.zipfs.for.archive: " + testJar.toString()
74-
);
75-
7668
//check proper diagnostics when zip/jar FS not present:
7769
System.err.println("Test " + testJar + " on classpath");
78-
actualOutput = new JavacTask(tb, Mode.CMDLINE)
70+
new JavacTask(tb, Mode.CMDLINE)
7971
.classpath(testJar)
8072
.options("-XDrawDiagnostics")
8173
.files(testSource)
8274
.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);
9076

9177
System.err.println("Test " + testJar + " on sourcepath");
92-
actualOutput = new JavacTask(tb, Mode.CMDLINE)
78+
new JavacTask(tb, Mode.CMDLINE)
9379
.sourcepath(testJar)
9480
.options("-XDrawDiagnostics")
9581
.files(testSource)
9682
.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);
10484

10585
System.err.println("Test " + testJar + " on modulepath");
106-
actualOutput = new JavacTask(tb, Mode.CMDLINE)
86+
new JavacTask(tb, Mode.CMDLINE)
10787
.options("-XDrawDiagnostics",
10888
"--module-path", testJar.toString())
10989
.files(testSource)
11090
.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);
12392

12493
System.err.println("Test directory containing " + testJar + " on modulepath");
125-
actualOutput = new JavacTask(tb, Mode.CMDLINE)
94+
new JavacTask(tb, Mode.CMDLINE)
12695
.classpath()
12796
.options("-XDrawDiagnostics",
12897
"--module-path", testJar.getParent().toString())
12998
.files(testSource)
13099
.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);
138101
}
139102

140103
}

0 commit comments

Comments
 (0)
Please sign in to comment.