author | yzheng |
Wed, 16 Oct 2019 16:54:56 +0200 | |
changeset 58650 | d068b1e534de |
parent 53878 | 4584d0331318 |
permissions | -rw-r--r-- |
10 | 1 |
/* |
53878
4584d0331318
8219254: Update explicit uses of latest source/target in langtools tests to a property
darcy
parents:
53023
diff
changeset
|
2 |
* Copyright (c) 2006, 2019, Oracle and/or its affiliates. All rights reserved. |
10 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
5520 | 19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
20 |
* or visit www.oracle.com if you need additional information or have any |
|
21 |
* questions. |
|
10 | 22 |
*/ |
23 |
||
24 |
/** |
|
25 |
* @test |
|
50892 | 26 |
* @bug 6330997 7025789 8000961 8188870 8193290 |
10 | 27 |
* @summary javac should accept class files with major version of the next release |
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 | 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 | 34 |
* @clean T1 T2 |
53878
4584d0331318
8219254: Update explicit uses of latest source/target in langtools tests to a property
darcy
parents:
53023
diff
changeset
|
35 |
* @compile T1.java |
4584d0331318
8219254: Update explicit uses of latest source/target in langtools tests to a property
darcy
parents:
53023
diff
changeset
|
36 |
* @compile T2.java |
10 | 37 |
* @run main/othervm T6330997 |
38 |
*/ |
|
39 |
||
40 |
import java.nio.*; |
|
41 |
import java.io.*; |
|
42 |
import java.nio.channels.*; |
|
36526 | 43 |
|
10 | 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 | 46 |
import com.sun.tools.javac.code.Symtab; |
50374
2d0647b9ac18
8198378: javac crash when checking imports and a broken class is present
jlahoda
parents:
48355
diff
changeset
|
47 |
import com.sun.tools.javac.util.Names; |
10 | 48 |
import javax.tools.ToolProvider; |
49 |
||
50 |
public class T6330997 { |
|
51 |
public static void main(String... args) { |
|
52 |
increaseMajor("T1.class", 1); |
|
53 |
increaseMajor("T2.class", 2); |
|
54 |
javax.tools.JavaCompiler tool = ToolProvider.getSystemJavaCompiler(); |
|
55 |
JavacTaskImpl task = (JavacTaskImpl)tool.getTask(null, null, null, null, null, null); |
|
36526 | 56 |
Symtab syms = Symtab.instance(task.getContext()); |
50374
2d0647b9ac18
8198378: javac crash when checking imports and a broken class is present
jlahoda
parents:
48355
diff
changeset
|
57 |
Names names = Names.instance(task.getContext()); |
39917
c51a8950f278
8154705: invalid use of ALL-MODULE-PATH causes crash
ksrini
parents:
37940
diff
changeset
|
58 |
task.ensureEntered(); |
10 | 59 |
try { |
50374
2d0647b9ac18
8198378: javac crash when checking imports and a broken class is present
jlahoda
parents:
48355
diff
changeset
|
60 |
syms.enterClass(syms.unnamedModule, names.fromString("T1")).complete(); |
10 | 61 |
} catch (Exception e) { |
62 |
e.printStackTrace(); |
|
63 |
throw new RuntimeException("Failed: unexpected exception while reading class T1"); |
|
64 |
} |
|
65 |
try { |
|
50374
2d0647b9ac18
8198378: javac crash when checking imports and a broken class is present
jlahoda
parents:
48355
diff
changeset
|
66 |
syms.enterClass(syms.unnamedModule, names.fromString("T2")).complete(); |
10 | 67 |
} catch (BadClassFile e) { |
68 |
System.err.println("Passed: expected completion failure " + e.getClass().getName()); |
|
69 |
return; |
|
70 |
} catch (Exception e) { |
|
71 |
e.printStackTrace(); |
|
72 |
throw new RuntimeException("Failed: unexpected exception while reading class T2"); |
|
73 |
} |
|
74 |
throw new RuntimeException("Failed: no error reported"); |
|
75 |
} |
|
76 |
||
77 |
// Increase class file cfile's major version by delta |
|
78 |
static void increaseMajor(String cfile, int delta) { |
|
22151 | 79 |
try (RandomAccessFile cls = |
80 |
new RandomAccessFile(new File(System.getProperty("test.classes", "."), cfile), "rw"); |
|
81 |
FileChannel fc = cls.getChannel()) { |
|
10 | 82 |
ByteBuffer rbuf = ByteBuffer.allocate(2); |
83 |
fc.read(rbuf, 6); |
|
84 |
ByteBuffer wbuf = ByteBuffer.allocate(2); |
|
85 |
wbuf.putShort(0, (short)(rbuf.getShort(0) + delta)); |
|
86 |
fc.write(wbuf, 6); |
|
87 |
fc.force(false); |
|
22151 | 88 |
} catch (Exception e){ |
10 | 89 |
throw new RuntimeException("Failed: unexpected exception"); |
90 |
} |
|
91 |
} |
|
92 |
} |