-
Bug
-
Resolution: Fixed
-
P4
-
None
-
b63
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8084814 | emb-9 | Volker Simonis | P4 | Resolved | Fixed | team |
The test 'test/tools/launcher/ExecutionEnvironment.java' needs a special handling on Solaris. But instead of doing:
if (TestHelper.isSolaris) { ... } else { ... }
it goes the other way round:
if (TestHelper.isLinux || TestHelper.isMacOSX || TestHelper.isAIX) { ... } else { /* Solaris */ ... }
Fix the test to explicitly check for Solaris. This will make it possible to also run the test on other operating systems without the need to explicitly name them.
if (TestHelper.isSolaris) { ... } else { ... }
it goes the other way round:
if (TestHelper.isLinux || TestHelper.isMacOSX || TestHelper.isAIX) { ... } else { /* Solaris */ ... }
Fix the test to explicitly check for Solaris. This will make it possible to also run the test on other operating systems without the need to explicitly name them.
- backported by
-
JDK-8084814 [TESTBUG] fix 'test/tools/launcher/ExecutionEnvironment.java' to run on arbitrary *nix systems
- Resolved