langtools/test/tools/javac/6330997/T6330997.java
author ksrini
Wed, 20 Jul 2016 12:49:32 -0700
changeset 39917 c51a8950f278
parent 37940 ead113a2f92e
permissions -rw-r--r--
8154705: invalid use of ALL-MODULE-PATH causes crash Summary: Introducing Modules.initModules as a clear point where the module graphs is initialized in javac Reviewed-by: jjg, ksrini
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     1
/*
37940
ead113a2f92e 8150011: Update javac to generate V53.0 class files
jjg
parents: 36526
diff changeset
     2
 * Copyright (c) 2006, 2016, Oracle and/or its affiliates. All rights reserved.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
06bc494ca11e Initial load
duke
parents:
diff changeset
     4
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
06bc494ca11e Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
06bc494ca11e Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
06bc494ca11e Initial load
duke
parents:
diff changeset
     8
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
06bc494ca11e Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
06bc494ca11e Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
06bc494ca11e Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
06bc494ca11e Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
06bc494ca11e Initial load
duke
parents:
diff changeset
    14
 *
06bc494ca11e Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
06bc494ca11e Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
06bc494ca11e Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
06bc494ca11e Initial load
duke
parents:
diff changeset
    18
 *
5520
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
86e4b9a9da40 6943119: Rebrand source copyright notices
ohair
parents: 10
diff changeset
    21
 * questions.
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    22
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    23
06bc494ca11e Initial load
duke
parents:
diff changeset
    24
/**
06bc494ca11e Initial load
duke
parents:
diff changeset
    25
 * @test
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    26
 * @bug     6330997 7025789 8000961
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    27
 * @summary javac should accept class files with major version of the next release
06bc494ca11e Initial load
duke
parents:
diff changeset
    28
 * @author  Wei Tao
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 24604
diff changeset
    29
 * @modules jdk.compiler/com.sun.tools.javac.api
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 24604
diff changeset
    30
 *          jdk.compiler/com.sun.tools.javac.code
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30730
diff changeset
    31
 *          jdk.compiler/com.sun.tools.javac.comp
30730
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 24604
diff changeset
    32
 *          jdk.compiler/com.sun.tools.javac.main
d3ce7619db2c 8076543: Add @modules as needed to the langtools tests
akulyakh
parents: 24604
diff changeset
    33
 *          jdk.compiler/com.sun.tools.javac.util
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    34
 * @clean T1 T2
37940
ead113a2f92e 8150011: Update javac to generate V53.0 class files
jjg
parents: 36526
diff changeset
    35
 * @compile -source 9 -target 9 T1.java
ead113a2f92e 8150011: Update javac to generate V53.0 class files
jjg
parents: 36526
diff changeset
    36
 * @compile -source 9 -target 9 T2.java
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    37
 * @run main/othervm T6330997
06bc494ca11e Initial load
duke
parents:
diff changeset
    38
 */
06bc494ca11e Initial load
duke
parents:
diff changeset
    39
06bc494ca11e Initial load
duke
parents:
diff changeset
    40
import java.nio.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    41
import java.io.*;
06bc494ca11e Initial load
duke
parents:
diff changeset
    42
import java.nio.channels.*;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30730
diff changeset
    43
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    44
import com.sun.tools.javac.api.JavacTaskImpl;
24604
7f68545b5128 8041422: Split javac ClassReader into ClassReader+ClassFinder
jjg
parents: 22151
diff changeset
    45
import com.sun.tools.javac.code.ClassFinder.BadClassFile;
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30730
diff changeset
    46
import com.sun.tools.javac.code.Symtab;
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    47
import com.sun.tools.javac.main.JavaCompiler;
06bc494ca11e Initial load
duke
parents:
diff changeset
    48
import javax.tools.ToolProvider;
06bc494ca11e Initial load
duke
parents:
diff changeset
    49
06bc494ca11e Initial load
duke
parents:
diff changeset
    50
public class T6330997 {
06bc494ca11e Initial load
duke
parents:
diff changeset
    51
    public static void main(String... args) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    52
        increaseMajor("T1.class", 1);
06bc494ca11e Initial load
duke
parents:
diff changeset
    53
        increaseMajor("T2.class", 2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    54
        javax.tools.JavaCompiler tool = ToolProvider.getSystemJavaCompiler();
06bc494ca11e Initial load
duke
parents:
diff changeset
    55
        JavacTaskImpl task = (JavacTaskImpl)tool.getTask(null, null, null, null, null, null);
06bc494ca11e Initial load
duke
parents:
diff changeset
    56
        JavaCompiler compiler = JavaCompiler.instance(task.getContext());
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30730
diff changeset
    57
        Symtab syms = Symtab.instance(task.getContext());
39917
c51a8950f278 8154705: invalid use of ALL-MODULE-PATH causes crash
ksrini
parents: 37940
diff changeset
    58
        task.ensureEntered();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    59
        try {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30730
diff changeset
    60
            compiler.resolveIdent(syms.unnamedModule, "T1").complete();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    61
        } catch (Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    62
            e.printStackTrace();
06bc494ca11e Initial load
duke
parents:
diff changeset
    63
            throw new RuntimeException("Failed: unexpected exception while reading class T1");
06bc494ca11e Initial load
duke
parents:
diff changeset
    64
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    65
        try {
36526
3b41f1c69604 8142968: Module System implementation
alanb
parents: 30730
diff changeset
    66
            compiler.resolveIdent(syms.unnamedModule, "T2").complete();
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    67
        } catch (BadClassFile e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    68
            System.err.println("Passed: expected completion failure " + e.getClass().getName());
06bc494ca11e Initial load
duke
parents:
diff changeset
    69
            return;
06bc494ca11e Initial load
duke
parents:
diff changeset
    70
        } catch (Exception e) {
06bc494ca11e Initial load
duke
parents:
diff changeset
    71
            e.printStackTrace();
06bc494ca11e Initial load
duke
parents:
diff changeset
    72
            throw new RuntimeException("Failed: unexpected exception while reading class T2");
06bc494ca11e Initial load
duke
parents:
diff changeset
    73
        }
06bc494ca11e Initial load
duke
parents:
diff changeset
    74
        throw new RuntimeException("Failed: no error reported");
06bc494ca11e Initial load
duke
parents:
diff changeset
    75
    }
06bc494ca11e Initial load
duke
parents:
diff changeset
    76
06bc494ca11e Initial load
duke
parents:
diff changeset
    77
    // Increase class file cfile's major version by delta
06bc494ca11e Initial load
duke
parents:
diff changeset
    78
    static void increaseMajor(String cfile, int delta) {
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    79
        try (RandomAccessFile cls =
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    80
             new RandomAccessFile(new File(System.getProperty("test.classes", "."), cfile), "rw");
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    81
             FileChannel fc = cls.getChannel()) {
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    82
            ByteBuffer rbuf = ByteBuffer.allocate(2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    83
            fc.read(rbuf, 6);
06bc494ca11e Initial load
duke
parents:
diff changeset
    84
            ByteBuffer wbuf = ByteBuffer.allocate(2);
06bc494ca11e Initial load
duke
parents:
diff changeset
    85
            wbuf.putShort(0, (short)(rbuf.getShort(0) + delta));
06bc494ca11e Initial load
duke
parents:
diff changeset
    86
            fc.write(wbuf, 6);
06bc494ca11e Initial load
duke
parents:
diff changeset
    87
            fc.force(false);
22151
cb8daa93eeb1 8028545: Add -source 9 and -target 9 to javac
darcy
parents: 10180
diff changeset
    88
        } catch (Exception e){
10
06bc494ca11e Initial load
duke
parents:
diff changeset
    89
            throw new RuntimeException("Failed: unexpected exception");
06bc494ca11e Initial load
duke
parents:
diff changeset
    90
         }
06bc494ca11e Initial load
duke
parents:
diff changeset
    91
     }
06bc494ca11e Initial load
duke
parents:
diff changeset
    92
}