|
1 /* |
|
2 * Copyright 2008 Sun Microsystems, Inc. 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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 * CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 * have any questions. |
|
22 */ |
|
23 |
|
24 /* |
|
25 * @test |
|
26 * @bug 6733837 |
|
27 * @summary Compiler API ignores locale settings |
|
28 * @author Maurizio Cimadamore |
|
29 * @library ../lib |
|
30 */ |
|
31 |
|
32 import java.io.StringWriter; |
|
33 import java.io.PrintWriter; |
|
34 import java.net.URI; |
|
35 import java.util.Arrays; |
|
36 import java.util.List; |
|
37 import javax.tools.JavaFileObject; |
|
38 import javax.tools.SimpleJavaFileObject; |
|
39 import static javax.tools.JavaFileObject.Kind; |
|
40 import com.sun.source.util.JavacTask; |
|
41 |
|
42 public class T6733837 extends ToolTester { |
|
43 |
|
44 public static void main(String... args) { |
|
45 new T6733837().exec(); |
|
46 } |
|
47 |
|
48 public void exec() { |
|
49 JavaFileObject sfo = new SimpleJavaFileObject(URI.create(""),Kind.SOURCE) { |
|
50 public CharSequence getCharContent(boolean ignoreEncodingErrors) { |
|
51 return "\tclass ErroneousWithTab"; |
|
52 } |
|
53 @Override |
|
54 public String getName() { |
|
55 return "RELATIVEPATH"; |
|
56 } |
|
57 }; |
|
58 StringWriter sw = new StringWriter(); |
|
59 PrintWriter out = new PrintWriter(sw); |
|
60 List<? extends JavaFileObject> files = Arrays.asList(sfo); |
|
61 task = tool.getTask(sw, fm, null, null, null, files); |
|
62 try { |
|
63 ((JavacTask)task).analyze(); |
|
64 } |
|
65 catch (Throwable t) { |
|
66 throw new Error("Compiler threw an exception"); |
|
67 } |
|
68 System.err.println(sw.toString()); |
|
69 if (sw.toString().contains("RELATIVEPATH")) |
|
70 throw new Error("Bad source name in diagnostic"); |
|
71 } |
|
72 } |