test/tools/javac/api/T6306137.java

Mon, 07 Jan 2013 17:51:05 +0000

author
jjh
date
Mon, 07 Jan 2013 17:51:05 +0000
changeset 1478
a9cb93cca229
parent 554
9d9f26857129
child 1546
2480aec9a3f1
permissions
-rw-r--r--

8005647: langtools/test/tools/javap/MethodParameters.java fails on windows
Summary: Fix javap to not output \r\r\n
Reviewed-by: jjg

     1 /*
     2  * Copyright (c) 2005, 2006, 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     6306137
    27  * @summary JSR 199: encoding option doesn't affect standard file manager
    28  * @author  Peter von der Ahé
    29  * @ignore
    30  *    Need to make the contentCache in JavacFileManager be aware of changes to the encoding.
    31  *    Need to propogate -source (and -encoding?) down to the JavacFileManager
    32  */
    34 import java.io.File;
    35 import java.util.Arrays;
    36 import javax.tools.*;
    38 public class T6306137 {
    39     boolean error;
    40     final StandardJavaFileManager fm;
    41     final JavaCompiler compiler;
    42     Iterable<? extends JavaFileObject> files;
    43     DiagnosticListener<JavaFileObject> dl;
    45     T6306137() {
    46         dl = new DiagnosticListener<JavaFileObject>() {
    47                 public void report(Diagnostic<? extends JavaFileObject> message) {
    48                     if (message.getKind() == Diagnostic.Kind.ERROR)
    49                         error = true;
    50                     System.out.println(message.getSource()
    51                                        +":"+message.getStartPosition()+":"
    52                                        +message.getStartPosition()+":"+message.getPosition());
    53                     System.out.println(message.toString());
    54                     System.out.format("Found problem: %s%n", message.getCode());
    55                     System.out.flush();
    56                 }
    57         };
    58         compiler = ToolProvider.getSystemJavaCompiler();
    59         fm = compiler.getStandardFileManager(dl, null, null);
    60         String srcdir = System.getProperty("test.src");
    61         files =
    62             fm.getJavaFileObjectsFromFiles(Arrays.asList(new File(srcdir, "T6306137.java")));
    63     }
    65     void test(String encoding, boolean good) {
    66         error = false;
    67         Iterable<String> args = Arrays.asList("-source", "6", "-encoding", encoding, "-d", ".");
    68         compiler.getTask(null, fm, dl, args, null, files).call();
    69         if (error == good) {
    70             if (error) {
    71                 throw new AssertionError("Error reported");
    72             } else {
    73                 throw new AssertionError("No error reported");
    74             }
    75         }
    76     }
    78     public static void main(String[] args) {
    79         T6306137 self = new T6306137();
    80         self.test("utf-8", true);
    81         self.test("ascii", false);
    82         self.test("utf-8", true);
    83     }
    84 }

mercurial