< prev index next >

test/jdk/tools/jpackage/createimage/JPackageCreateImageRuntimeTest.java

Print this page




  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 jpackage create image runtime test
  27  * @library ../helpers
  28  * @build JPackageHelper
  29  * @build JPackagePath
  30  * @build JPackageCreateImageRuntimeBase
  31  * @modules jdk.jpackage
  32  * @run main/othervm -Xmx512m JPackageCreateImageRuntimeTest
  33  */
  34 public class JPackageCreateImageRuntimeTest {

  35     private static final String [] CMD = {
  36         "create-image",
  37         "--runtime-image", "runtime",
  38         "--input", "input",
  39         "--output", "output",
  40         "--name", "test",
  41         "--main-jar", "hello.jar",
  42         "--main-class", "Hello",
  43         "--overwrite",
  44         "--files", "hello.jar"};
  45 
  46     public static void main(String[] args) throws Exception {
  47         JPackageHelper.createHelloImageJar();
  48         JPackageHelper.createRuntime();
  49         JPackageCreateImageRuntimeBase.testCreateImage(CMD);

  50         JPackageCreateImageRuntimeBase.testCreateImageToolProvider(CMD);
  51     }
  52 
  53 }


  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 jpackage create image runtime test
  27  * @library ../helpers
  28  * @build JPackageHelper
  29  * @build JPackagePath
  30  * @build JPackageCreateImageRuntimeBase
  31  * @modules jdk.jpackage
  32  * @run main/othervm -Xmx512m JPackageCreateImageRuntimeTest
  33  */
  34 public class JPackageCreateImageRuntimeTest {
  35     private static final String OUTPUT = "output";
  36     private static final String [] CMD = {
  37         "create-image",
  38         "--runtime-image", "runtime",
  39         "--input", "input",
  40         "--output", OUTPUT,
  41         "--name", "test",
  42         "--main-jar", "hello.jar",
  43         "--main-class", "Hello",

  44         "--files", "hello.jar"};
  45 
  46     public static void main(String[] args) throws Exception {
  47         JPackageHelper.createHelloImageJar();
  48         JPackageHelper.createRuntime();
  49         JPackageCreateImageRuntimeBase.testCreateImage(CMD);
  50         JPackageHelper.deleteOutputFolder(OUTPUT);
  51         JPackageCreateImageRuntimeBase.testCreateImageToolProvider(CMD);
  52     }
  53 
  54 }
< prev index next >