test/tools/javac/api/6412656/T6412656.java

Mon, 02 Sep 2013 22:38:36 +0100

author
vromero
date
Mon, 02 Sep 2013 22:38:36 +0100
changeset 2000
4a6acc42c3a1
parent 1733
e39669aea0bd
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8016177: structural most specific and stuckness
Reviewed-by: jjg, vromero
Contributed-by: maurizio.cimadamore@oracle.com

     1 /*
     2  * Copyright (c) 2006, 2013, 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  */
    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  * @build ToolTester
    31  * @run main T6412656
    32  */
    34 import java.util.Set;
    35 import java.util.Collections;
    36 import javax.lang.model.element.TypeElement;
    37 import javax.annotation.processing.*;
    38 import com.sun.tools.javac.processing.AnnotationProcessingError;
    41 public class T6412656 extends ToolTester {
    43     int count = 0;
    45     void test(String... args) {
    46         task = tool.getTask(null, fm, null, null,
    47                             Collections.singleton(T6412656.class.getName()), null);
    48         task.setProcessors(Collections.singleton(new MyProc(this)));
    49         task.call();
    50         if (count == 0)
    51             throw new AssertionError("Annotation processor not run");
    52         System.out.println("OK");
    53     }
    55     public static void main(String... args) {
    56         new T6412656().test(args);
    57     }
    59     @SupportedAnnotationTypes("*")
    60     static class MyProc extends AbstractProcessor {
    61         T6412656 test;
    62         MyProc(T6412656 test) {
    63             this.test = test;
    64         }
    65         public boolean process(Set<? extends TypeElement> annotations,
    66                                RoundEnvironment roundEnv) {
    67             test.count++;
    68             return false;
    69         }
    70     }
    71 }

mercurial