test/tools/javac/processing/6430209/b6341534.java

Fri, 27 Sep 2013 11:34:32 -0700

author
mduigou
date
Fri, 27 Sep 2013 11:34:32 -0700
changeset 2073
4ed8565fa536
parent 932
edf03ca74991
child 2525
2eb010b6cb22
permissions
-rw-r--r--

8024842: Define ABS_TEST_OUTPUT_DIR via TEST_OUTPUT_DIR
Reviewed-by: ihse, erikj, vromero

duke@1 1 /*
jjg@932 2 * Copyright (c) 2006, 2011, Oracle and/or its affiliates. All rights reserved.
duke@1 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@1 4 *
duke@1 5 * This code is free software; you can redistribute it and/or modify it
duke@1 6 * under the terms of the GNU General Public License version 2 only, as
duke@1 7 * published by the Free Software Foundation.
duke@1 8 *
duke@1 9 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@1 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@1 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@1 12 * version 2 for more details (a copy is included in the LICENSE file that
duke@1 13 * accompanied this code).
duke@1 14 *
duke@1 15 * You should have received a copy of the GNU General Public License version
duke@1 16 * 2 along with this work; if not, write to the Free Software Foundation,
duke@1 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@1 18 *
ohair@554 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@554 20 * or visit www.oracle.com if you need additional information or have any
ohair@554 21 * questions.
duke@1 22 */
duke@1 23
duke@1 24 import javax.annotation.processing.*;
darcy@495 25 import javax.lang.model.SourceVersion;
duke@1 26 import javax.lang.model.element.*;
duke@1 27 import javax.lang.model.util.*;
duke@1 28 import static javax.lang.model.util.ElementFilter.*;
duke@1 29 import static javax.tools.Diagnostic.Kind.*;
duke@1 30 import java.util.*;
duke@1 31 import java.util.Set;
duke@1 32
darcy@699 33 public class b6341534 extends JavacTestingAbstractProcessor {
duke@1 34 static int r = 0;
darcy@699 35
duke@1 36 //Create directory 'dir1' and a test class in dir1
duke@1 37 public boolean process(Set<? extends TypeElement> tes, RoundEnvironment renv)
duke@1 38 {
duke@1 39 if(!renv.errorRaised() && !renv.processingOver()){
duke@1 40 r++;
duke@1 41 for( TypeElement t : typesIn(renv.getRootElements()) )
duke@1 42 System.out.println("Round"+r+ ": " + t.toString());
duke@1 43
duke@1 44 try {
darcy@699 45 PackageElement PE = eltUtils.getPackageElement("dir1");
duke@1 46 List<? extends Element> LEE = PE.getEnclosedElements(); /* <=This line elicits the error message. */
jjg@664 47 for(Element e : LEE)
jjg@664 48 System.out.println("found " + e.toString() + " in dir1.");
duke@1 49 }
duke@1 50 catch(NullPointerException npe) {
darcy@699 51 messager.printMessage(ERROR,npe.toString());
duke@1 52 //npe.printStackTrace();
duke@1 53 return false;
duke@1 54 }
duke@1 55 }
jjg@664 56 // on round 1, expect errorRaised == false && processingOver == false
jjg@664 57 // on round 2, expect errorRaised == true && processingOver == true
jjg@664 58 if( renv.errorRaised() != renv.processingOver()) {
jjg@932 59 messager.printMessage(ERROR, "FAILED: round:" + r
jjg@932 60 + ", errorRaised:" + renv.errorRaised()
jjg@932 61 + ", processingOver:" + renv.processingOver());
jjg@664 62 }
duke@1 63 return true;
duke@1 64 }
duke@1 65 }

mercurial