< prev index next >

make/langtools/test/sym/CreateSymbolsTest.java

Print this page


   1 /*
   2  * Copyright (c) 2015, 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  */


  39 import java.nio.file.Paths;
  40 import java.nio.file.attribute.BasicFileAttributes;
  41 import java.util.Arrays;
  42 import javax.tools.JavaCompiler;
  43 import javax.tools.StandardJavaFileManager;
  44 import javax.tools.ToolProvider;
  45 
  46 public class CreateSymbolsTest {
  47 
  48     static final String CREATE_SYMBOLS_NAME = "symbolgenerator.CreateSymbols";
  49 
  50     public static void main(String... args) throws Exception {
  51         new CreateSymbolsTest().doRun();
  52     }
  53 
  54     void doRun() throws Exception {
  55         Path testClasses = Paths.get(System.getProperty("test.classes"));
  56         Path compileDir = testClasses.resolve("data");
  57         deleteRecursively(compileDir);
  58         Files.createDirectories(compileDir);
  59         Path createSymbols = findFile("../../make/src/classes/build/tools/symbolgenerator/CreateSymbols.java");
  60 
  61         if (createSymbols == null) {
  62             System.err.println("Warning: cannot find CreateSymbols, skipping.");
  63             return ;
  64         }
  65 
  66         Path createTestImpl = findFile("../../make/test/sym/CreateSymbolsTestImpl.java");
  67 
  68         if (createTestImpl == null) {
  69             System.err.println("Warning: cannot find CreateSymbolsTestImpl, skipping.");
  70             return ;
  71         }
  72 
  73         Path toolBox = findFile("../../test/tools/lib/ToolBox.java");
  74 
  75         if (toolBox == null) {
  76             System.err.println("Warning: cannot find ToolBox, skipping.");
  77             return ;
  78         }
  79 


   1 /*
   2  * Copyright (c) 2015, 2020, 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  */


  39 import java.nio.file.Paths;
  40 import java.nio.file.attribute.BasicFileAttributes;
  41 import java.util.Arrays;
  42 import javax.tools.JavaCompiler;
  43 import javax.tools.StandardJavaFileManager;
  44 import javax.tools.ToolProvider;
  45 
  46 public class CreateSymbolsTest {
  47 
  48     static final String CREATE_SYMBOLS_NAME = "symbolgenerator.CreateSymbols";
  49 
  50     public static void main(String... args) throws Exception {
  51         new CreateSymbolsTest().doRun();
  52     }
  53 
  54     void doRun() throws Exception {
  55         Path testClasses = Paths.get(System.getProperty("test.classes"));
  56         Path compileDir = testClasses.resolve("data");
  57         deleteRecursively(compileDir);
  58         Files.createDirectories(compileDir);
  59         Path createSymbols = findFile("../../src/jdk.compiler/share/tools/org/openjdk/symbolgenerator/CreateSymbols.java");
  60 
  61         if (createSymbols == null) {
  62             System.err.println("Warning: cannot find CreateSymbols, skipping.");
  63             return ;
  64         }
  65 
  66         Path createTestImpl = findFile("../../make/test/sym/CreateSymbolsTestImpl.java");
  67 
  68         if (createTestImpl == null) {
  69             System.err.println("Warning: cannot find CreateSymbolsTestImpl, skipping.");
  70             return ;
  71         }
  72 
  73         Path toolBox = findFile("../../test/tools/lib/ToolBox.java");
  74 
  75         if (toolBox == null) {
  76             System.err.println("Warning: cannot find ToolBox, skipping.");
  77             return ;
  78         }
  79 


< prev index next >