Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8274397: [macOS] Stop setting env. var JAVA_MAIN_CLASS_<pid> in launcher code #5724

Closed
wants to merge 6 commits into from
2 changes: 2 additions & 0 deletions test/jdk/tools/launcher/MacOSAppNamePropertyTest.java
Original file line number Diff line number Diff line change
@@ -54,6 +54,8 @@ public static void main(String[]args) {
static void execTest(String propSetting, String expect) {
List<String> cmdList = new ArrayList<>();
cmdList.add(javaCmd);
cmdList.add("-cp");
cmdList.add(TEST_CLASSES_DIR.getAbsolutePath());
if (propSetting != null) {
cmdList.add(propSetting);
}