test/jdk/tools/jpackage/createinstaller/linux/base/JPackageCreateInstallerPackageDepsBase.java
branchJDK-8200758-branch
changeset 57307 4948a1944cf9
parent 57241 e11f3bf34083
child 57414 6eda749d3117
equal deleted inserted replaced
57306:b3b59183df78 57307:4948a1944cf9
   118             "--input", "input",
   118             "--input", "input",
   119             "--output", "output",
   119             "--output", "output",
   120             "--name", TEST_NAME,
   120             "--name", TEST_NAME,
   121             "--main-jar", "hello.jar",
   121             "--main-jar", "hello.jar",
   122             "--main-class", "Hello",
   122             "--main-class", "Hello",
   123             "--files", "hello.jar",
       
   124             "--linux-package-deps", DEP_NAME.toLowerCase()};
   123             "--linux-package-deps", DEP_NAME.toLowerCase()};
   125         CMD_DEP = new String[]{
   124         CMD_DEP = new String[]{
   126             "create-installer",
   125             "create-installer",
   127             "--installer-type", EXT,
   126             "--installer-type", EXT,
   128             "--input", "input",
   127             "--input", "input",
   129             "--output", "output",
   128             "--output", "output",
   130             "--name", DEP_NAME,
   129             "--name", DEP_NAME,
   131             "--main-jar", "hello.jar",
   130             "--main-jar", "hello.jar",
   132             "--main-class", "Hello",
   131             "--main-class", "Hello"};
   133             "--files", "hello.jar"};
       
   134     }
   132     }
   135 
   133 
   136     public static void run(String name, String ext) throws Exception {
   134     public static void run(String name, String ext) throws Exception {
   137         init(name, ext);
   135         init(name, ext);
   138 
   136