JPackageCreateAppImageBundleNameTest fails due to bundle name is not set correctly in info.plist and it will default to application name. If I patch it manually bundle name will be displayed correctly in menu.
Test uses following command:
private static final String [] CMD_2 = {
"create-app-image",
"--input", "input",
"--output", OUTPUT,
"--name", APP_NAME,
"--main-jar", "hello.jar",
"--main-class", "Hello",
"--mac-bundle-name", MAC_BUNDLE_NAME
};
Note: This test is not yet in sandbox and will be added as part ofJDK-8224597.
Test uses following command:
private static final String [] CMD_2 = {
"create-app-image",
"--input", "input",
"--output", OUTPUT,
"--name", APP_NAME,
"--main-jar", "hello.jar",
"--main-class", "Hello",
"--mac-bundle-name", MAC_BUNDLE_NAME
};
Note: This test is not yet in sandbox and will be added as part of
- relates to
-
JDK-8224597 create automated tests for platform create-app-image options
- Resolved