RFR(s): 8169196: [TESTBUG] Three tests from sun/net/www have undeclared dependencies

Daniel Fuchs daniel.fuchs at oracle.com
Tue Nov 8 17:38:47 UTC 2016


Hi Sergey,

This looks good now - except for line 223:

  221             Field ntlmSupportedField = 
ntlmProxyClass.getDeclaredField("supported");
  222             ntlmSupportedField.setAccessible(true);
  223             if 
(Boolean.TRUE.equals(ntlmSupportedField.getBoolean(ntlmProxyClass))) {

This should be:

if (ntlmSupportedField.getBoolean(null)) {

best regards,

-- daniel


On 08/11/16 16:50, Sergei Kovalev wrote:
> Hi Daniel,
>
> All remarks incorporated into:
>
> http://cr.openjdk.java.net/~skovalev/8169196/webrev.01/
>
> Also I've added a note to the
> https://bugs.openjdk.java.net/browse/JDK-8038079
>



More information about the net-dev mailing list