langtools/test/tools/javac/api/6420464/T6420464.java
changeset 27319 030080f03e4f
parent 5520 86e4b9a9da40
child 30730 d3ce7619db2c
equal deleted inserted replaced
27318:4660a5da7d90 27319:030080f03e4f
     1 /*
     1 /*
     2  * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     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
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     7  * published by the Free Software Foundation.
    36     static final File test_src     = new File(System.getProperty("test.src"));
    36     static final File test_src     = new File(System.getProperty("test.src"));
    37     static final File test_classes = new File(System.getProperty("test.classes"));
    37     static final File test_classes = new File(System.getProperty("test.classes"));
    38 
    38 
    39     public static void main(String... args) throws IOException {
    39     public static void main(String... args) throws IOException {
    40         JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
    40         JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
    41         StandardJavaFileManager mgr = compiler.getStandardFileManager(null, null, null);
    41         try (StandardJavaFileManager mgr = compiler.getStandardFileManager(null, null, null)) {
    42         mgr.setLocation(StandardLocation.SOURCE_PATH, Collections.singleton(test_src));
    42             mgr.setLocation(StandardLocation.SOURCE_PATH, Collections.singleton(test_src));
    43         JavaFileObject f = mgr.getJavaFileForInput(StandardLocation.SOURCE_PATH,
    43             JavaFileObject f = mgr.getJavaFileForInput(StandardLocation.SOURCE_PATH,
    44                                                    "T6420464",
    44                                                        "T6420464",
    45                                                    JavaFileObject.Kind.SOURCE);
    45                                                        JavaFileObject.Kind.SOURCE);
    46         if (!f.isNameCompatible("T6420464", JavaFileObject.Kind.SOURCE))
    46             if (!f.isNameCompatible("T6420464", JavaFileObject.Kind.SOURCE))
    47             throw new AssertionError("isNameCompatible(SOURCE) fails on " + f.toUri());
    47                 throw new AssertionError("isNameCompatible(SOURCE) fails on " + f.toUri());
    48         if (f.isNameCompatible("T6420464", JavaFileObject.Kind.OTHER))
    48             if (f.isNameCompatible("T6420464", JavaFileObject.Kind.OTHER))
    49             throw new AssertionError("isNameCompatible(OTHER) fails on " + f.toUri());
    49                 throw new AssertionError("isNameCompatible(OTHER) fails on " + f.toUri());
    50         System.out.println("OK");
    50             System.out.println("OK");
       
    51         }
    51     }
    52     }
    52 }
    53 }