< prev index next >

test/hotspot/jtreg/runtime/cds/customLoader/LoaderSegregationTest.java

Print this page




  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 /*
  26  * @test
  27  * @summary Check that during dumping, the classes for BOOT/EXT/APP loaders are segregated from the
  28  *          custom loader classes.
  29  * @requires vm.cds
  30  * @requires vm.cds.custom.loaders
  31  * @library /test/lib /test/hotspot/jtreg/runtime/appcds
  32  * @modules java.base/jdk.internal.misc
  33  *          java.management
  34  *          jdk.jartool/sun.tools.jar
  35  * @compile test-classes/LoaderSegregation.java
  36  *          test-classes/CustomLoadee.java test-classes/CustomLoadee2.java
  37  *          test-classes/CustomInterface2_ia.java test-classes/CustomInterface2_ib.java
  38  *          test-classes/CustomLoadee3.java test-classes/CustomLoadee3Child.java
  39  *          test-classes/OnlyBuiltin.java
  40  *          test-classes/OnlyUnregistered.java
  41  *          ../test-classes/Util.java
  42  * @build sun.hotspot.WhiteBox
  43  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  44  * @run driver LoaderSegregationTest
  45  */
  46 
  47 import jdk.test.lib.process.OutputAnalyzer;
  48 import sun.hotspot.WhiteBox;
  49 
  50 /**
  51  * See "Handling of the classes in the AppCDS archive" at the top of




  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 /*
  26  * @test
  27  * @summary Check that during dumping, the classes for BOOT/EXT/APP loaders are segregated from the
  28  *          custom loader classes.
  29  * @requires vm.cds
  30  * @requires vm.cds.custom.loaders
  31  * @library /test/lib /test/hotspot/jtreg/runtime/cds
  32  * @modules java.base/jdk.internal.misc
  33  *          java.management
  34  *          jdk.jartool/sun.tools.jar
  35  * @compile test-classes/LoaderSegregation.java
  36  *          test-classes/CustomLoadee.java test-classes/CustomLoadee2.java
  37  *          test-classes/CustomInterface2_ia.java test-classes/CustomInterface2_ib.java
  38  *          test-classes/CustomLoadee3.java test-classes/CustomLoadee3Child.java
  39  *          test-classes/OnlyBuiltin.java
  40  *          test-classes/OnlyUnregistered.java
  41  *          ../test-classes/Util.java
  42  * @build sun.hotspot.WhiteBox
  43  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  44  * @run driver LoaderSegregationTest
  45  */
  46 
  47 import jdk.test.lib.process.OutputAnalyzer;
  48 import sun.hotspot.WhiteBox;
  49 
  50 /**
  51  * See "Handling of the classes in the AppCDS archive" at the top of


< prev index next >