JDK-8177071 : typo in test DisabledAlgorithms.java
  • Type: Bug
  • Component: security-libs
  • Sub-Component: javax.net.ssl
  • Affected Version: 8u121,9
  • Priority: P4
  • Status: Resolved
  • Resolution: Cannot Reproduce
  • Submitted: 2017-03-18
  • Updated: 2017-12-14
  • Resolved: 2017-12-14
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 10
10Resolved
Related Reports
Relates :  
Relates :  
Description
javax/net/ssl/ciphersuites/DisabledAlgorithms.java contains this fragment:

                // some of the certs in our test are weak; disable
                Security.setProperty("jdk.certpath.disabledAlgorithms", "");
                System.out.println("jdk.certpath.disabledAlgorithms = "
                        + Security.getProperty("jdk.cerpath.disabledAlgorithms"));

There's a typo in the property name on the last line - "cerpath" instead of "certpath".  Does not affect the test result.

Comments
The issue has been fixed with previous changeseet.
14-12-2017