Skip to content

Commit 71aa821

Browse files
committedOct 18, 2022
8295176: some langtools test pollutes source tree
Reviewed-by: sadayapalam, darcy, vromero
1 parent bca7ab3 commit 71aa821

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
/**
22
* @test /nodynamiccopyright/
33
* @bug 8072480
4-
* @summary Verify that javac rejects Java 8 program with --release 7
4+
* @summary Verify that javac rejects Java 17 program with --release 11
55
* @compile ReleaseOption.java
6+
* @compile/fail/ref=ReleaseOption.out -XDrawDiagnostics --release 11 ReleaseOption.java
67
*/
78

8-
interface ReleaseOption extends java.util.stream.Stream {
9+
interface ReleaseOption extends java.util.random.RandomGenerator {
910
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
ReleaseOption.java:9:49: compiler.err.doesnt.exist: java.util.random
2+
1 error

‎test/langtools/tools/javac/options/release/ReleaseOptionThroughAPI.java

+4-2
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,12 @@ void run() throws IOException {
5050
PrintWriter outWriter = new PrintWriter(out)) {
5151
Iterable<? extends JavaFileObject> input =
5252
fm.getJavaFileObjects(System.getProperty("test.src") + "/ReleaseOption.java");
53-
List<String> options = Arrays.asList("--release", "8", "-XDrawDiagnostics", "-Xlint:-options");
53+
List<String> options = Arrays.asList("--release", "11", "-XDrawDiagnostics", "-d", ".");
5454

5555
compiler.getTask(outWriter, fm, null, options, null, input).call();
56-
String expected ="";
56+
String expected =
57+
"ReleaseOption.java:9:49: compiler.err.doesnt.exist: java.util.random" + lineSep +
58+
"1 error" + lineSep;
5759
if (!expected.equals(out.toString())) {
5860
throw new AssertionError("Unexpected output: " + out.toString());
5961
}

0 commit comments

Comments
 (0)
Please sign in to comment.