< prev index next >

test/runtime/modules/PatchModule/PatchModuleClassList.java

Print this page
rev 13329 : 8185436: jtreg: introduce @requires property to disable cds tests
Summary: Fix CompressedClassPointers test to succeed also if cds is not available.
   1 /*
   2  * Copyright (c) 2016, 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  */
  23 
  24 /*
  25  * @test

  26  * @summary classes which are not useable during run time should not be included in the classlist
  27  * @library /test/lib
  28  * @modules java.base/jdk.internal.misc
  29  *          jdk.jartool/sun.tools.jar
  30  * @build PatchModuleMain
  31  * @run main PatchModuleClassList
  32  */
  33 
  34 import java.nio.file.Files;
  35 import java.nio.file.Paths;
  36 import jdk.test.lib.compiler.InMemoryJavaCompiler;
  37 import jdk.test.lib.process.OutputAnalyzer;
  38 import jdk.test.lib.process.ProcessTools;
  39 
  40 public class PatchModuleClassList {
  41     private static final String BOOT_CLASS = "javax/naming/spi/NamingManager";
  42     private static final String PLATFORM_CLASS = "javax/transaction/InvalidTransactionException";
  43 
  44     public static void main(String args[]) throws Throwable {
  45         // Case 1. A class to be loaded by the boot class loader


   1 /*
   2  * Copyright (c) 2016, 2017, 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  */
  23 
  24 /**
  25  * @test
  26  * @requires vm.cds
  27  * @summary classes which are not useable during run time should not be included in the classlist
  28  * @library /test/lib
  29  * @modules java.base/jdk.internal.misc
  30  *          jdk.jartool/sun.tools.jar
  31  * @build PatchModuleMain
  32  * @run main PatchModuleClassList
  33  */
  34 
  35 import java.nio.file.Files;
  36 import java.nio.file.Paths;
  37 import jdk.test.lib.compiler.InMemoryJavaCompiler;
  38 import jdk.test.lib.process.OutputAnalyzer;
  39 import jdk.test.lib.process.ProcessTools;
  40 
  41 public class PatchModuleClassList {
  42     private static final String BOOT_CLASS = "javax/naming/spi/NamingManager";
  43     private static final String PLATFORM_CLASS = "javax/transaction/InvalidTransactionException";
  44 
  45     public static void main(String args[]) throws Throwable {
  46         // Case 1. A class to be loaded by the boot class loader


< prev index next >