test/jdk/tools/jpackage/share/VerboseTest.java
branchJDK-8200758-branch
changeset 58114 42df7de58e39
parent 57446 5a5b85f00a63
child 58147 45a9084fe981
equal deleted inserted replaced
58113:885b0543f6e4 58114:42df7de58e39
    31  * @run main/othervm -Xmx512m VerboseTest
    31  * @run main/othervm -Xmx512m VerboseTest
    32  */
    32  */
    33 public class VerboseTest {
    33 public class VerboseTest {
    34     private static final String OUTPUT = "output";
    34     private static final String OUTPUT = "output";
    35     private static final String[] CMD = {
    35     private static final String[] CMD = {
       
    36         "--package-type", "app-image",
    36         "--input", "input",
    37         "--input", "input",
    37         "--output", OUTPUT,
    38         "--output", OUTPUT,
    38         "--name", "test",
    39         "--name", "test",
    39         "--main-jar", "hello.jar",
    40         "--main-jar", "hello.jar",
    40         "--main-class", "Hello",
    41         "--main-class", "Hello",
    41     };
    42     };
    42 
    43 
    43     private static final String[] CMD_VERBOSE = {
    44     private static final String[] CMD_VERBOSE = {
       
    45         "--package-type", "app-image",
    44         "--input", "input",
    46         "--input", "input",
    45         "--output", OUTPUT,
    47         "--output", OUTPUT,
    46         "--name", "test",
    48         "--name", "test",
    47         "--main-jar", "hello.jar",
    49         "--main-jar", "hello.jar",
    48         "--main-class", "Hello",
    50         "--main-class", "Hello",