test/tools/javac/processing/werror/WErrorLast.java

Fri, 21 Dec 2012 08:45:43 -0800

author
darcy
date
Fri, 21 Dec 2012 08:45:43 -0800
changeset 1466
b52a38d4536c
parent 699
d2aaaec153e8
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8005282: Use @library tag with non-relative path for javac tests
Reviewed-by: jjg

jjg@614 1 /*
jjg@614 2 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
jjg@614 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
jjg@614 4 *
jjg@614 5 * This code is free software; you can redistribute it and/or modify it
jjg@614 6 * under the terms of the GNU General Public License version 2 only, as
jjg@614 7 * published by the Free Software Foundation.
jjg@614 8 *
jjg@614 9 * This code is distributed in the hope that it will be useful, but WITHOUT
jjg@614 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
jjg@614 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
jjg@614 12 * version 2 for more details (a copy is included in the LICENSE file that
jjg@614 13 * accompanied this code).
jjg@614 14 *
jjg@614 15 * You should have received a copy of the GNU General Public License version
jjg@614 16 * 2 along with this work; if not, write to the Free Software Foundation,
jjg@614 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
jjg@614 18 *
jjg@614 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
jjg@614 20 * or visit www.oracle.com if you need additional information or have any
jjg@614 21 * questions.
jjg@614 22 */
jjg@614 23
jjg@614 24 /*
jjg@614 25 * @test 6403456
jjg@614 26 * @summary -Werror should work with annotation processing
darcy@1466 27 * @library /tools/javac/lib
darcy@699 28 * @build JavacTestingAbstractProcessor
jjg@614 29 * @compile WErrorLast.java
jjg@614 30 * @compile -proc:only -processor WErrorLast WErrorLast.java
jjg@614 31 * @compile/fail/ref=WErrorLast.out -XDrawDiagnostics -Werror -proc:only -processor WErrorLast WErrorLast.java
jjg@614 32 */
jjg@614 33
jjg@614 34 import java.io.*;
jjg@614 35 import java.util.*;
jjg@614 36 import javax.annotation.processing.*;
jjg@614 37 import javax.lang.model.*;
jjg@614 38 import javax.lang.model.element.*;
jjg@614 39 import javax.tools.*;
jjg@614 40
darcy@699 41 public class WErrorLast extends JavacTestingAbstractProcessor {
jjg@614 42 @Override
jjg@614 43 public boolean process(Set<? extends TypeElement> annotations,
jjg@614 44 RoundEnvironment roundEnv) {
jjg@614 45 if (roundEnv.processingOver()) {
jjg@614 46 messager.printMessage(Diagnostic.Kind.WARNING, "last round");
jjg@614 47 }
jjg@614 48 return true;
jjg@614 49 }
jjg@614 50 }

mercurial