Skip to content

Commit c98417e

Browse files
committedSep 9, 2020
8250840: some tests use --enable-preview unnecessarily
Reviewed-by: vromero
1 parent c655b70 commit c98417e

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed
 

‎test/langtools/jdk/javadoc/doclet/testRecordLinks/TestRecordLinks.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
* @library /tools/lib ../../lib
2929
* @modules jdk.javadoc/jdk.javadoc.internal.tool
3030
* @build toolbox.ToolBox javadoc.tester.*
31-
* @compile --enable-preview --source ${jdk.version} TestRecordLinks.java
32-
* @run main/othervm --enable-preview TestRecordLinks
31+
* @compile TestRecordLinks.java
32+
* @run main TestRecordLinks
3333
*/
3434

3535
import java.nio.file.Path;

‎test/langtools/jdk/jshell/ToolSimpleTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public void testOpenComment() {
7777

7878
@Test
7979
public void testSwitchExpression() {
80-
test(false, new String[]{"--enable-preview", "--no-startup"},
80+
test(false, new String[]{"--no-startup"},
8181
(a) -> assertCommand(a, "enum Day {MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY }", "| created enum Day"),
8282
(a) -> assertCommand(a, "Day day = Day.FRIDAY;", "day ==> FRIDAY"),
8383
(a) -> assertCommand(a, "switch (day) {", ""),
@@ -91,7 +91,7 @@ public void testSwitchExpression() {
9191

9292
@Test
9393
public void testSwitchExpressionCompletion() {
94-
test(false, new String[]{"--enable-preview", "--no-startup"},
94+
test(false, new String[]{"--no-startup"},
9595
(a) -> assertCommand(a, "enum Day {MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY }", "| created enum Day"),
9696
(a) -> assertCommand(a, "Day day = Day.FRIDAY;", "day ==> FRIDAY"),
9797
(a) -> assertCommand(a, "switch (day) {", ""),

‎test/langtools/tools/javac/ConditionalExpressionResolvePending.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
* jdk.compiler/com.sun.tools.javac.util
3535
* @build toolbox.ToolBox toolbox.JavacTask
3636
* @build combo.ComboTestHelper
37-
* @compile --enable-preview -source ${jdk.version} ConditionalExpressionResolvePending.java
37+
* @compile ConditionalExpressionResolvePending.java
3838
* @run main/othervm --enable-preview ConditionalExpressionResolvePending
3939
*/
4040

‎test/langtools/tools/javac/patterns/BreakAndLoops.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
* jdk.compiler/com.sun.tools.javac.util
3535
* @build toolbox.ToolBox toolbox.JavacTask
3636
* @build combo.ComboTestHelper
37-
* @compile --enable-preview -source ${jdk.version} BreakAndLoops.java
38-
* @run main/othervm --enable-preview BreakAndLoops
37+
* @compile BreakAndLoops.java
38+
* @run main BreakAndLoops
3939
*/
4040

4141
import combo.ComboInstance;

‎test/langtools/tools/javac/patterns/ConditionalTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
* jdk.compiler/com.sun.tools.javac.util
3535
* @build toolbox.ToolBox toolbox.JavacTask
3636
* @build combo.ComboTestHelper
37-
* @compile --enable-preview -source ${jdk.version} ConditionalTest.java
38-
* @run main/othervm --enable-preview ConditionalTest
37+
* @compile ConditionalTest.java
38+
* @run main ConditionalTest
3939
*/
4040

4141
import combo.ComboInstance;

‎test/langtools/tools/javac/recovery/ClassBlockExits.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
* jdk.compiler/com.sun.tools.javac.util
3333
* @build toolbox.ToolBox toolbox.JavacTask
3434
* @build combo.ComboTestHelper
35-
* @compile --enable-preview -source ${jdk.version} ClassBlockExits.java
36-
* @run main/othervm --enable-preview ClassBlockExits
35+
* @compile ClassBlockExits.java
36+
* @run main ClassBlockExits
3737
*/
3838

3939
import combo.ComboInstance;

0 commit comments

Comments
 (0)
Please sign in to comment.