< prev index next >

test/jdk/tools/jpackage/share/ModulePathTest.java

Print this page

        

@@ -36,24 +36,27 @@
 
 public class ModulePathTest {
     private static final String OUTPUT = "output";
 
     private static final String [] CMD1 = {
+        "--package-type", "app-image",
         "--output", OUTPUT,
         "--name", "test",
         "--module", "com.hello/com.hello.Hello",
         "--module-path", "input",
     };
 
     private static final String [] CMD2 = {
+        "--package-type", "app-image",
         "--output", OUTPUT,
         "--name", "test",
         "--module", "com.hello/com.hello.Hello",
         "--module-path", "input" + File.pathSeparator + "input-other",
     };
 
     private static final String [] CMD3 = {
+        "--package-type", "app-image",
         "--output", OUTPUT,
         "--name", "test",
         "--module", "com.hello/com.hello.Hello",
         "--module-path", "input",
         "--module-path", "input-other",
< prev index next >