author | lana |
Thu, 21 Jan 2016 09:46:01 -0800 | |
changeset 35340 | 38f7386ed942 |
parent 30730 | d3ce7619db2c |
permissions | -rw-r--r-- |
10 | 1 |
/* |
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27319
diff
changeset
|
2 |
* Copyright (c) 2006, 2015, 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 |
|
26 |
* @bug 6397044 |
|
27 |
* @summary JCModifiers.getModifiers() returns incorrect Modifiers set. |
|
30730
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27319
diff
changeset
|
28 |
* @modules jdk.compiler/com.sun.tools.javac.api |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27319
diff
changeset
|
29 |
* jdk.compiler/com.sun.tools.javac.code |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27319
diff
changeset
|
30 |
* jdk.compiler/com.sun.tools.javac.file |
d3ce7619db2c
8076543: Add @modules as needed to the langtools tests
akulyakh
parents:
27319
diff
changeset
|
31 |
* jdk.compiler/com.sun.tools.javac.tree |
10 | 32 |
*/ |
33 |
||
34 |
import java.io.*; |
|
35 |
import java.util.*; |
|
36 |
import javax.tools.*; |
|
37 |
import javax.lang.model.element.Modifier; |
|
38 |
import com.sun.source.tree.*; |
|
39 |
import com.sun.source.util.*; |
|
40 |
import com.sun.tools.javac.api.JavacTool; |
|
41 |
import com.sun.tools.javac.code.Flags; |
|
42 |
import com.sun.tools.javac.tree.JCTree.JCModifiers; |
|
43 |
||
44 |
public abstract class T6397044 { |
|
45 |
public static void main(String[] args) throws Exception { |
|
46 |
String srcDir = System.getProperty("test.src", "."); |
|
47 |
String self = T6397044.class.getName(); |
|
48 |
JavacTool tool = JavacTool.create(); |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
49 |
try (StandardJavaFileManager fm = tool.getStandardFileManager(null, null, null)) { |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
50 |
Iterable<? extends JavaFileObject> files |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
51 |
= fm.getJavaFileObjectsFromFiles(Arrays.asList(new File(srcDir, self + ".java"))); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
52 |
JavacTask task = tool.getTask(null, fm, null, null, null, files); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
53 |
Iterable<? extends CompilationUnitTree> trees = task.parse(); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
54 |
Checker checker = new Checker(); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
55 |
for (CompilationUnitTree tree: trees) |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
56 |
checker.check(tree); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
5520
diff
changeset
|
57 |
} |
10 | 58 |
} |
59 |
||
60 |
public int x_public; |
|
61 |
protected int x_protected; |
|
62 |
private int x_private; |
|
63 |
abstract int x_abstract(); |
|
64 |
static int x_static; |
|
65 |
final int x_final = 1; |
|
66 |
transient int x_transient; |
|
67 |
volatile int x_volatile; |
|
68 |
synchronized void x_synchronized() { } |
|
69 |
native int x_native(); |
|
70 |
strictfp void x_strictfp() { } |
|
71 |
||
72 |
static class Checker extends TreeScanner<Void,Void> { |
|
73 |
void check(Tree tree) { |
|
74 |
if (tree != null) |
|
75 |
tree.accept(this, null); |
|
76 |
} |
|
77 |
||
78 |
void check(List<? extends Tree> trees) { |
|
79 |
if (trees == null) |
|
80 |
return; |
|
81 |
for (Tree tree: trees) |
|
82 |
check(tree); |
|
83 |
} |
|
84 |
||
85 |
public Void visitCompilationUnit(CompilationUnitTree tree, Void ignore) { |
|
86 |
check(tree.getTypeDecls()); |
|
87 |
return null; |
|
88 |
} |
|
89 |
||
90 |
public Void visitClass(ClassTree tree, Void ignore) { |
|
91 |
check(tree.getMembers()); |
|
92 |
return null; |
|
93 |
} |
|
94 |
||
95 |
public Void visitMethod(MethodTree tree, Void ignore) { |
|
96 |
check(tree.getName(), tree.getModifiers()); |
|
97 |
return null; |
|
98 |
} |
|
99 |
||
100 |
public Void visitVariable(VariableTree tree, Void ignore) { |
|
101 |
check(tree.getName(), tree.getModifiers()); |
|
102 |
return null; |
|
103 |
} |
|
104 |
||
105 |
private void check(CharSequence name, ModifiersTree modifiers) { |
|
106 |
long sysflags = ((JCModifiers) modifiers).flags; |
|
107 |
System.err.println(name + ": " + modifiers.getFlags() + " | " + Flags.toString(sysflags)); |
|
108 |
if (name.toString().startsWith("x_")) { |
|
109 |
String expected = "[" + name.toString().substring(2) + "]"; |
|
110 |
String found = modifiers.getFlags().toString(); |
|
111 |
if (!found.equals(expected)) |
|
112 |
throw new AssertionError("expected: " + expected + "; found: " + found); |
|
113 |
} |
|
114 |
} |
|
115 |
} |
|
116 |
} |