author | akulyakh |
Thu, 21 May 2015 11:41:04 -0700 | |
changeset 30730 | d3ce7619db2c |
parent 27319 | 030080f03e4f |
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 6395974 |
|
27 |
* @summary files are parsed even after failure to find annotation processor is reported |
|
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.file |
10 | 30 |
*/ |
31 |
||
32 |
import java.io.*; |
|
33 |
import java.util.*; |
|
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
34 |
|
10 | 35 |
import javax.tools.*; |
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
36 |
|
10 | 37 |
import com.sun.source.util.*; |
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
38 |
import com.sun.source.util.TaskEvent.Kind; |
10 | 39 |
import com.sun.tools.javac.api.*; |
40 |
||
41 |
||
42 |
public class T6395974 { |
|
43 |
public static void main(String... args) throws Throwable { |
|
44 |
String self = T6395974.class.getName(); |
|
45 |
||
46 |
String testSrc = System.getProperty("test.src"); |
|
47 |
||
48 |
JavacTool tool = JavacTool.create(); |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
49 |
try (StandardJavaFileManager fm = tool.getStandardFileManager(null, null, null)) { |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
50 |
Iterable<?extends JavaFileObject> f = |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
51 |
fm.getJavaFileObjectsFromFiles(Arrays.asList(new File(testSrc, self + ".java"))); |
10 | 52 |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
53 |
PrintWriter out = new PrintWriter(System.err, true); |
10 | 54 |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
55 |
JavacTaskImpl task = (JavacTaskImpl) tool.getTask(out, |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
56 |
fm, |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
57 |
null, |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
58 |
Arrays.asList("-processor", |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
59 |
"Foo.java"), |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
60 |
null, |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
61 |
f); |
10 | 62 |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
63 |
MyTaskListener tl = new MyTaskListener(); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
64 |
task.setTaskListener(tl); |
10 | 65 |
|
27319
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
66 |
task.call(); |
030080f03e4f
8062348: langtools tests should close file manager (group 1)
jjg
parents:
24898
diff
changeset
|
67 |
} |
10 | 68 |
} |
69 |
||
70 |
static class MyTaskListener implements TaskListener { |
|
71 |
public void started(TaskEvent e) { |
|
24898
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
72 |
if (e.getKind() != Kind.COMPILATION) { |
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
73 |
throw new AssertionError("Unexpected TaskListener event: " + e); |
88fa65d2ac87
8033414: javac Plugin to receive notification (before and) after the compilation.
jlahoda
parents:
5520
diff
changeset
|
74 |
} |
10 | 75 |
} |
76 |
public void finished(TaskEvent e) { |
|
77 |
} |
|
78 |
||
79 |
TaskEvent event; |
|
80 |
} |
|
81 |
} |