< prev index next >

test/hotspot/jtreg/runtime/appcds/javaldr/ArrayTest.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 /*
  26  * @test
  27  * @summary test the ability to archive array classes and load them from the archive
  28  * @requires vm.cds
  29  * @library /test/lib /test/hotspot/jtreg/runtime/appcds
  30  * @modules jdk.jartool/sun.tools.jar
  31  * @compile ArrayTestHelper.java
  32  * @build sun.hotspot.WhiteBox
  33  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  34  * @run main ArrayTest
  35  */
  36 
  37 import java.util.List;
  38 import java.util.ArrayList;
  39 import jdk.test.lib.process.OutputAnalyzer;
  40 
  41 public class ArrayTest {
  42 
  43     static String arrayClasses[] = {
  44         "ArrayTestHelper",
  45         "[Ljava/lang/Comparable;",
  46         "[I",
  47         "[[[Ljava/lang/Object;",
  48         "[[B"
  49     };
  50 
  51     public static void main(String[] args) throws Exception {
  52         JarBuilder.build("arrayTestHelper", "ArrayTestHelper");
  53 
  54         String appJar = TestCommon.getTestJar("arrayTestHelper.jar");




  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 test the ability to archive array classes and load them from the archive
  28  * @requires vm.cds
  29  * @library /test/lib /test/hotspot/jtreg/runtime/appcds
  30  * @modules jdk.jartool/sun.tools.jar
  31  * @compile ArrayTestHelper.java
  32  * @build sun.hotspot.WhiteBox
  33  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  34  * @run driver ArrayTest
  35  */
  36 
  37 import java.util.List;
  38 import java.util.ArrayList;
  39 import jdk.test.lib.process.OutputAnalyzer;
  40 
  41 public class ArrayTest {
  42 
  43     static String arrayClasses[] = {
  44         "ArrayTestHelper",
  45         "[Ljava/lang/Comparable;",
  46         "[I",
  47         "[[[Ljava/lang/Object;",
  48         "[[B"
  49     };
  50 
  51     public static void main(String[] args) throws Exception {
  52         JarBuilder.build("arrayTestHelper", "ArrayTestHelper");
  53 
  54         String appJar = TestCommon.getTestJar("arrayTestHelper.jar");


< prev index next >