You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
test case test_SSLSocket_endpointIdentification_Failure and test_SSLSocket_reusedNpnSocket can pass in linux platform while fail in mac os platform. One demo could reproduce it:
`package com.example;
test case
test_SSLSocket_endpointIdentification_Failure
andtest_SSLSocket_reusedNpnSocket
can pass in linux platform while fail in mac os platform. One demo could reproduce it:`package com.example;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutput;
import java.io.ObjectOutputStream;
import java.io.OutputStream;
import java.lang.reflect.Method;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.UnknownHostException;
import java.security.NoSuchAlgorithmException;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLParameters;
import javax.net.ssl.SSLServerSocket;
import javax.net.ssl.SSLSocket;
public class Socket {
private static class HostnameRewritingObjectOutputStream extends ObjectOutputStream {
private final String hostname;
}`
this demo could pass in linux while not in mac os platform. it will be blocked in accept() for ever.
The text was updated successfully, but these errors were encountered: