test/langtools/tools/javac/versions/Versions.java
changeset 51047 860a3648c494
parent 50949 999f09bf3464
child 53023 6879069d9d94
equal deleted inserted replaced
51046:69634e97740c 51047:860a3648c494
    21  * questions.
    21  * questions.
    22  */
    22  */
    23 
    23 
    24 /*
    24 /*
    25  * @test
    25  * @test
    26  * @bug 4981566 5028634 5094412 6304984 7025786 7025789 8001112 8028545 8000961 8030610 8028546 8188870 8173382 8173382 8193290 8205619
    26  * @bug 4981566 5028634 5094412 6304984 7025786 7025789 8001112 8028545 8000961 8030610 8028546 8188870 8173382 8173382 8193290 8205619 8028563
    27  * @summary Check interpretation of -target and -source options
    27  * @summary Check interpretation of -target and -source options
    28  * @modules java.compiler
    28  * @modules java.compiler
    29  *          jdk.compiler
    29  *          jdk.compiler
    30  * @run main Versions
    30  * @run main Versions
    31  */
    31  */
    64         Versions versions = new Versions();
    64         Versions versions = new Versions();
    65         versions.run();
    65         versions.run();
    66     }
    66     }
    67 
    67 
    68     public static final Set<String> RETIRED_SOURCES =
    68     public static final Set<String> RETIRED_SOURCES =
    69         Set.of("1.2", "1.3", "1.4", "1.5" /*, 1.6 */);
    69         Set.of("1.2", "1.3", "1.4", "1.5", "1.6");
    70 
    70 
    71     public static final Set<String> VALID_SOURCES =
    71     public static final Set<String> VALID_SOURCES =
    72         Set.of("1.7", "1.8", "1.9", "1.10", "11", "12");
    72         Set.of("1.7", "1.8", "1.9", "1.10", "11", "12");
    73 
    73 
    74     public static final String LATEST_MAJOR_VERSION = "56.0";
    74     public static final String LATEST_MAJOR_VERSION = "56.0";