test/jdk/tools/jpackage/createappimage/JPackageCreateAppImageModulePathTest.java
branchJDK-8200758-branch
changeset 57414 6eda749d3117
parent 57326 603101a378fe
equal deleted inserted replaced
57413:45c74e654794 57414:6eda749d3117
    36 
    36 
    37 public class JPackageCreateAppImageModulePathTest {
    37 public class JPackageCreateAppImageModulePathTest {
    38     private static final String OUTPUT = "output";
    38     private static final String OUTPUT = "output";
    39 
    39 
    40     private static final String [] CMD1 = {
    40     private static final String [] CMD1 = {
    41         "create-app-image",
       
    42         "--output", OUTPUT,
    41         "--output", OUTPUT,
    43         "--name", "test",
    42         "--name", "test",
    44         "--module", "com.hello/com.hello.Hello",
    43         "--module", "com.hello/com.hello.Hello",
    45         "--module-path", "input",
    44         "--module-path", "input",
    46     };
    45     };
    47 
    46 
    48     private static final String [] CMD2 = {
    47     private static final String [] CMD2 = {
    49         "create-app-image",
       
    50         "--output", OUTPUT,
    48         "--output", OUTPUT,
    51         "--name", "test",
    49         "--name", "test",
    52         "--module", "com.hello/com.hello.Hello",
    50         "--module", "com.hello/com.hello.Hello",
    53         "--module-path", "input" + File.pathSeparator + "input-other",
    51         "--module-path", "input" + File.pathSeparator + "input-other",
    54     };
    52     };
    55 
    53 
    56     private static final String [] CMD3 = {
    54     private static final String [] CMD3 = {
    57         "create-app-image",
       
    58         "--output", OUTPUT,
    55         "--output", OUTPUT,
    59         "--name", "test",
    56         "--name", "test",
    60         "--module", "com.hello/com.hello.Hello",
    57         "--module", "com.hello/com.hello.Hello",
    61         "--module-path", "input",
    58         "--module-path", "input",
    62         "--module-path", "input-other",
    59         "--module-path", "input-other",