< prev index next >

test/hotspot/jtreg/runtime/cds/sharedStrings/SharedStringsBasic.java

Print this page




   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 /*
  26  * @test
  27  * @summary Basic test for shared strings
  28  * @requires vm.cds.archived.java.heap
  29  * @library /test/hotspot/jtreg/runtime/appcds /test/lib
  30  * @modules jdk.jartool/sun.tools.jar
  31  * @build HelloString
  32  * @run driver SharedStringsBasic
  33  */
  34 import jdk.test.lib.process.OutputAnalyzer;
  35 import jdk.test.lib.process.ProcessTools;
  36 
  37 // This test does not use SharedStringsUtils.dumpXXX()
  38 // and SharedStringsUtils.runWithXXX() intentionally:
  39 // - in order to demonstrate the basic use of the functionality
  40 // - to provide sanity check and catch potential problems in the utils
  41 public class SharedStringsBasic {
  42     public static void main(String[] args) throws Exception {
  43         SharedStringsUtils.run(args, SharedStringsBasic::test);
  44     }
  45 
  46     public static void test(String[] args) throws Exception {
  47         String vmOptionsPrefix[] = SharedStringsUtils.getChildVMOptionsPrefix();
  48 
  49         String appJar = JarBuilder.build("SharedStringsBasic", "HelloString");




   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 /*
  26  * @test
  27  * @summary Basic test for shared strings
  28  * @requires vm.cds.archived.java.heap
  29  * @library /test/hotspot/jtreg/runtime/cds /test/lib
  30  * @modules jdk.jartool/sun.tools.jar
  31  * @build HelloString
  32  * @run driver SharedStringsBasic
  33  */
  34 import jdk.test.lib.process.OutputAnalyzer;
  35 import jdk.test.lib.process.ProcessTools;
  36 
  37 // This test does not use SharedStringsUtils.dumpXXX()
  38 // and SharedStringsUtils.runWithXXX() intentionally:
  39 // - in order to demonstrate the basic use of the functionality
  40 // - to provide sanity check and catch potential problems in the utils
  41 public class SharedStringsBasic {
  42     public static void main(String[] args) throws Exception {
  43         SharedStringsUtils.run(args, SharedStringsBasic::test);
  44     }
  45 
  46     public static void test(String[] args) throws Exception {
  47         String vmOptionsPrefix[] = SharedStringsUtils.getChildVMOptionsPrefix();
  48 
  49         String appJar = JarBuilder.build("SharedStringsBasic", "HelloString");


< prev index next >