Loading openssl/src/ssl/test/mod.rs +3 −3 Original line number Diff line number Diff line Loading @@ -502,7 +502,7 @@ fn test_connect_with_srtp_ssl() { /// Tests that when the `SslStream` is created as a server stream, the protocols /// are correctly advertised to the client. #[test] #[cfg(any(ossl102, libressl261))] #[cfg(any(ossl102, libressl261, boringssl))] fn test_alpn_server_advertise_multiple() { let mut server = Server::builder(); server.ctx().set_alpn_select_callback(|_, client| { Loading @@ -517,7 +517,7 @@ fn test_alpn_server_advertise_multiple() { } #[test] #[cfg(ossl110)] #[cfg(any(ossl110, boringssl))] fn test_alpn_server_select_none_fatal() { let mut server = Server::builder(); server.ctx().set_alpn_select_callback(|_, client| { Loading @@ -533,7 +533,7 @@ fn test_alpn_server_select_none_fatal() { } #[test] #[cfg(any(ossl102, libressl261))] #[cfg(any(ossl102, libressl261, boringssl))] fn test_alpn_server_select_none() { static CALLED_BACK: AtomicBool = AtomicBool::new(false); Loading Loading
openssl/src/ssl/test/mod.rs +3 −3 Original line number Diff line number Diff line Loading @@ -502,7 +502,7 @@ fn test_connect_with_srtp_ssl() { /// Tests that when the `SslStream` is created as a server stream, the protocols /// are correctly advertised to the client. #[test] #[cfg(any(ossl102, libressl261))] #[cfg(any(ossl102, libressl261, boringssl))] fn test_alpn_server_advertise_multiple() { let mut server = Server::builder(); server.ctx().set_alpn_select_callback(|_, client| { Loading @@ -517,7 +517,7 @@ fn test_alpn_server_advertise_multiple() { } #[test] #[cfg(ossl110)] #[cfg(any(ossl110, boringssl))] fn test_alpn_server_select_none_fatal() { let mut server = Server::builder(); server.ctx().set_alpn_select_callback(|_, client| { Loading @@ -533,7 +533,7 @@ fn test_alpn_server_select_none_fatal() { } #[test] #[cfg(any(ossl102, libressl261))] #[cfg(any(ossl102, libressl261, boringssl))] fn test_alpn_server_select_none() { static CALLED_BACK: AtomicBool = AtomicBool::new(false); Loading