< prev index next >

test/hotspot/jtreg/runtime/cds/dynamicArchive/UnsupportedBaseArchive.java

Print this page




  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  *
  23  */
  24 
  25 import java.io.File;
  26 import java.nio.file.Files;
  27 import java.nio.file.Path;
  28 import java.nio.file.Paths;
  29 
  30 /*
  31  * @test
  32  * @summary unsupported base archive tests
  33  * @requires vm.cds
  34  * @library /test/lib /test/hotspot/jtreg/runtime/appcds /test/hotspot/jtreg/runtime/appcds/test-classes
  35  * @modules jdk.jartool/sun.tools.jar
  36  * @compile ../test-classes/Hello.java
  37  * @build sun.hotspot.WhiteBox
  38  * @run driver ClassFileInstaller -jar WhiteBox.jar sun.hotspot.WhiteBox
  39  * @run driver UnsupportedBaseArchive
  40  */
  41 
  42 public class UnsupportedBaseArchive extends DynamicArchiveTestBase {
  43     private static final Path USER_DIR = Paths.get(System.getProperty("user.dir"));
  44 
  45     private static final String FS = File.separator;
  46     private static final String TEST_SRC = System.getProperty("test.src") +
  47         FS + ".." + FS + "jigsaw" + FS + "modulepath";
  48 
  49     private static final Path SRC_DIR = Paths.get(TEST_SRC, "src");
  50     private static final Path MODS_DIR = Paths.get("mods");
  51 
  52     // the module name of the test module
  53     private static final String TEST_MODULE = "com.simple";
  54 




  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  *
  23  */
  24 
  25 import java.io.File;
  26 import java.nio.file.Files;
  27 import java.nio.file.Path;
  28 import java.nio.file.Paths;
  29 
  30 /*
  31  * @test
  32  * @summary unsupported base archive tests
  33  * @requires vm.cds
  34  * @library /test/lib /test/hotspot/jtreg/runtime/cds /test/hotspot/jtreg/runtime/cds/test-classes
  35  * @modules jdk.jartool/sun.tools.jar
  36  * @compile ../test-classes/Hello.java
  37  * @build sun.hotspot.WhiteBox
  38  * @run driver ClassFileInstaller -jar WhiteBox.jar sun.hotspot.WhiteBox
  39  * @run driver UnsupportedBaseArchive
  40  */
  41 
  42 public class UnsupportedBaseArchive extends DynamicArchiveTestBase {
  43     private static final Path USER_DIR = Paths.get(System.getProperty("user.dir"));
  44 
  45     private static final String FS = File.separator;
  46     private static final String TEST_SRC = System.getProperty("test.src") +
  47         FS + ".." + FS + "jigsaw" + FS + "modulepath";
  48 
  49     private static final Path SRC_DIR = Paths.get(TEST_SRC, "src");
  50     private static final Path MODS_DIR = Paths.get("mods");
  51 
  52     // the module name of the test module
  53     private static final String TEST_MODULE = "com.simple";
  54 


< prev index next >