T6395974.java revision 2687:56f8be952a5c
1/*
2 * Copyright (c) 2006, 2014, Oracle and/or its affiliates. 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 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.
22 */
23
24/*
25 * @test
26 * @bug 6395974
27 * @summary files are parsed even after failure to find annotation processor is reported
28 */
29
30import java.io.*;
31import java.util.*;
32
33import javax.tools.*;
34
35import com.sun.source.util.*;
36import com.sun.source.util.TaskEvent.Kind;
37import com.sun.tools.javac.api.*;
38
39
40public class T6395974 {
41    public static void main(String... args) throws Throwable {
42        String self = T6395974.class.getName();
43
44        String testSrc = System.getProperty("test.src");
45
46        JavacTool tool = JavacTool.create();
47        try (StandardJavaFileManager fm = tool.getStandardFileManager(null, null, null)) {
48            Iterable<?extends JavaFileObject> f =
49                fm.getJavaFileObjectsFromFiles(Arrays.asList(new File(testSrc, self + ".java")));
50
51            PrintWriter out = new PrintWriter(System.err, true);
52
53            JavacTaskImpl task = (JavacTaskImpl) tool.getTask(out,
54                                                              fm,
55                                                              null,
56                                                              Arrays.asList("-processor",
57                                                                            "Foo.java"),
58                                                              null,
59                                                              f);
60
61            MyTaskListener tl = new MyTaskListener();
62            task.setTaskListener(tl);
63
64            task.call();
65        }
66    }
67
68    static class MyTaskListener implements TaskListener {
69        public void started(TaskEvent e) {
70            if (e.getKind() != Kind.COMPILATION) {
71                throw new AssertionError("Unexpected TaskListener event: " + e);
72            }
73        }
74        public void finished(TaskEvent e) {
75        }
76
77        TaskEvent event;
78    }
79}
80