T6412656.java revision 3294:9adfb22ff08f
1/*
2 * Copyright (c) 2006, 2015, 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     6412656 6443062
27 * @summary JSR 199: pass annotation processor instances to compiler
28 * @author  Peter von der Ah\u00e9
29 * @library ../lib
30 * @modules java.compiler
31 *          jdk.compiler
32 * @build ToolTester
33 * @run main T6412656
34 */
35
36import java.io.IOException;
37import java.util.*;
38import javax.lang.model.element.TypeElement;
39import javax.annotation.processing.*;
40
41
42public class T6412656 extends ToolTester {
43
44    int count = 0;
45
46    void test(String... args) {
47        task = tool.getTask(null, fm, null, null,
48                            Collections.singleton(T6412656.class.getName()), null);
49        task.setProcessors(Collections.singleton(new MyProc(this)));
50        task.call();
51        if (count == 0)
52            throw new AssertionError("Annotation processor not run");
53        System.out.println("OK");
54    }
55
56    public static void main(String... args) throws IOException {
57        try (T6412656 t = new T6412656()) {
58            t.test(args);
59        }
60    }
61
62    @SupportedAnnotationTypes("*")
63    static class MyProc extends AbstractProcessor {
64        T6412656 test;
65        MyProc(T6412656 test) {
66            this.test = test;
67        }
68
69        public boolean process(Set<? extends TypeElement> annotations,
70                               RoundEnvironment roundEnv) {
71            test.count++;
72            return false;
73        }
74    }
75}
76