Permalink
Show file tree
Hide file tree
1 comment
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8274397: [macOS] Stop setting env. var JAVA_MAIN_CLASS_<pid> in launc…
…her code Reviewed-by: rriggs, serb
- Loading branch information
Showing
5 changed files
with
179 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,70 @@ | ||
/* | ||
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
|
||
/** | ||
* @test | ||
* @bug 8274397 | ||
* @summary Ensure the app name system property is set on macOS | ||
* @requires os.family == "mac" | ||
* @compile MacOSAppNamePropertyTest.java SystemPropertyTest.java | ||
* @run main MacOSAppNamePropertyTest | ||
*/ | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
/* | ||
* If the system property apple.awt.application.name is unset, it should default | ||
* to the name of this test class. | ||
* If it is set, then it should be used instead of the class. | ||
* The arg. to the test indicates the *expected* name. | ||
* The test will fail if the property is not set or does not match | ||
*/ | ||
public class MacOSAppNamePropertyTest extends TestHelper { | ||
|
||
static final String APPNAME = "SystemPropertyTest"; | ||
|
||
public static void main(String[]args) { | ||
if (!isMacOSX) { | ||
return; | ||
} | ||
execTest(null, APPNAME); | ||
execTest("-Dapple.awt.application.name=Foo", "Foo"); | ||
} | ||
|
||
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); | ||
} | ||
cmdList.add(APPNAME); | ||
cmdList.add(expect); | ||
TestResult tr = doExec(cmdList.toArray(new String[cmdList.size()])); | ||
if (!tr.isOK()) { | ||
System.err.println(tr.toString()); | ||
throw new RuntimeException("Test Fails"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved. | ||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. | ||
* | ||
* This code is free software; you can redistribute it and/or modify it | ||
* under the terms of the GNU General Public License version 2 only, as | ||
* published by the Free Software Foundation. | ||
* | ||
* This code is distributed in the hope that it will be useful, but WITHOUT | ||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | ||
* version 2 for more details (a copy is included in the LICENSE file that | ||
* accompanied this code). | ||
* | ||
* You should have received a copy of the GNU General Public License version | ||
* 2 along with this work; if not, write to the Free Software Foundation, | ||
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. | ||
* | ||
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA | ||
* or visit www.oracle.com if you need additional information or have any | ||
* questions. | ||
*/ | ||
|
||
|
||
/* | ||
* Child launched by MacOSAppNamePropertyTest.java | ||
* If the system property apple.awt.application.name is unset, it should default | ||
* to the name of this main program class, less any package name. | ||
* If it is set, then it should be used instead of the class name. | ||
* The arg. to the test indicates the *expected* name. | ||
* The test will fail if the property is not set or does not match | ||
*/ | ||
public class SystemPropertyTest { | ||
|
||
public static void main(String[]args) { | ||
String prop = System.getProperty("apple.awt.application.name"); | ||
if (prop == null) { | ||
throw new RuntimeException("Property not set"); | ||
} | ||
if (!prop.equals(args[0])) { | ||
throw new RuntimeException("Got " + prop + " expected " + args[0]); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3789065
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review
Issues