< prev index next >

test/hotspot/jtreg/runtime/appcds/sharedStrings/SharedStringsWbTest.java

Print this page




  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 White box test for shared strings
  28  * @requires vm.cds.archived.java.heap
  29  * @library /test/lib /test/hotspot/jtreg/runtime/appcds
  30  * @modules java.base/jdk.internal.misc
  31  * @modules java.management
  32  *          jdk.jartool/sun.tools.jar
  33  * @build sun.hotspot.WhiteBox SharedStringsWb
  34  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  35  * @run main SharedStringsWbTest


  36  */
  37 
  38 import java.io.*;
  39 import sun.hotspot.WhiteBox;
  40 
  41 public class SharedStringsWbTest {
  42     public static void main(String[] args) throws Exception {
  43         SharedStringsUtils.buildJarAndWhiteBox("SharedStringsWb");
  44 
  45         SharedStringsUtils.dumpWithWhiteBox(TestCommon.list("SharedStringsWb"),
  46             "SharedStringsBasic.txt");
  47 
  48         SharedStringsUtils.runWithArchiveAndWhiteBox("SharedStringsWb");
  49     }
  50 }


  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 White box test for shared strings
  28  * @requires vm.cds.archived.java.heap
  29  * @library /test/lib /test/hotspot/jtreg/runtime/appcds
  30  * @modules java.base/jdk.internal.misc
  31  * @modules java.management
  32  *          jdk.jartool/sun.tools.jar
  33  * @build sun.hotspot.WhiteBox SharedStringsWb
  34  * @run driver ClassFileInstaller sun.hotspot.WhiteBox
  35  * @run main SharedStringsWbTest
  36  * @run main/othervm -XX:+UseStringDeduplication SharedStringsWbTest
  37  * @run main/othervm -XX:-CompactStrings SharedStringsWbTest
  38  */
  39 
  40 import java.io.*;
  41 import sun.hotspot.WhiteBox;
  42 
  43 public class SharedStringsWbTest {
  44     public static void main(String[] args) throws Exception {
  45         SharedStringsUtils.buildJarAndWhiteBox("SharedStringsWb");
  46 
  47         SharedStringsUtils.dumpWithWhiteBox(TestCommon.list("SharedStringsWb"),
  48             "SharedStringsBasic.txt");
  49 
  50         SharedStringsUtils.runWithArchiveAndWhiteBox("SharedStringsWb");
  51     }
  52 }
< prev index next >