|
1 /* |
|
2 * Copyright 2006 Sun Microsystems, Inc. All Rights Reserved. |
|
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 * |
|
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 * CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 * have any questions. |
|
22 */ |
|
23 |
|
24 /* |
|
25 * @test |
|
26 * @bug 6395974 |
|
27 * @summary files are parsed even after failure to find annotation processor is reported |
|
28 */ |
|
29 |
|
30 import java.io.*; |
|
31 import java.util.*; |
|
32 import javax.tools.*; |
|
33 import com.sun.source.util.*; |
|
34 import com.sun.tools.javac.api.*; |
|
35 |
|
36 |
|
37 public class T6395974 { |
|
38 public static void main(String... args) throws Throwable { |
|
39 String self = T6395974.class.getName(); |
|
40 |
|
41 String testSrc = System.getProperty("test.src"); |
|
42 |
|
43 JavacTool tool = JavacTool.create(); |
|
44 StandardJavaFileManager fm = tool.getStandardFileManager(null, null, null); |
|
45 Iterable<?extends JavaFileObject> f = |
|
46 fm.getJavaFileObjectsFromFiles(Arrays.asList(new File(testSrc, self + ".java"))); |
|
47 |
|
48 PrintWriter out = new PrintWriter(System.err, true); |
|
49 |
|
50 JavacTaskImpl task = (JavacTaskImpl) tool.getTask(out, |
|
51 fm, |
|
52 null, |
|
53 Arrays.asList("-processor", |
|
54 "Foo.java"), |
|
55 null, |
|
56 f); |
|
57 |
|
58 MyTaskListener tl = new MyTaskListener(); |
|
59 task.setTaskListener(tl); |
|
60 |
|
61 task.call(); |
|
62 |
|
63 if (tl.event != null) |
|
64 throw new AssertionError("Unexpected TaskListener event: " + tl.event); |
|
65 } |
|
66 |
|
67 static class MyTaskListener implements TaskListener { |
|
68 public void started(TaskEvent e) { |
|
69 System.err.println("Started: " + e); |
|
70 if (event == null) |
|
71 event = e; |
|
72 } |
|
73 public void finished(TaskEvent e) { |
|
74 } |
|
75 |
|
76 TaskEvent event; |
|
77 } |
|
78 } |