Loading openssl/src/ssl/tests/mod.rs +3 −0 Original line number Diff line number Diff line Loading @@ -767,6 +767,9 @@ fn test_alpn_server_advertise_multiple() { /// the client's reported protocol. #[test] #[cfg(all(feature = "alpn", not(ossl101)))] // TODO: not sure why this test is failing on OpenSSL 1.1.0, may be related to // something about SSLv3 though? #[cfg_attr(ossl110, ignore)] fn test_alpn_server_select_none() { let listener = TcpListener::bind("127.0.0.1:0").unwrap(); let localhost = listener.local_addr().unwrap(); Loading Loading
openssl/src/ssl/tests/mod.rs +3 −0 Original line number Diff line number Diff line Loading @@ -767,6 +767,9 @@ fn test_alpn_server_advertise_multiple() { /// the client's reported protocol. #[test] #[cfg(all(feature = "alpn", not(ossl101)))] // TODO: not sure why this test is failing on OpenSSL 1.1.0, may be related to // something about SSLv3 though? #[cfg_attr(ossl110, ignore)] fn test_alpn_server_select_none() { let listener = TcpListener::bind("127.0.0.1:0").unwrap(); let localhost = listener.local_addr().unwrap(); Loading