Skip to content

Commit cf40611

Browse files
Enable tests
1 parent ef81d97 commit cf40611

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

openssl/src/ssl/test/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -502,7 +502,7 @@ fn test_connect_with_srtp_ssl() {
502502
/// Tests that when the `SslStream` is created as a server stream, the protocols
503503
/// are correctly advertised to the client.
504504
#[test]
505-
#[cfg(any(ossl102, libressl261))]
505+
#[cfg(any(ossl102, libressl261, boringssl))]
506506
fn test_alpn_server_advertise_multiple() {
507507
let mut server = Server::builder();
508508
server.ctx().set_alpn_select_callback(|_, client| {
@@ -517,7 +517,7 @@ fn test_alpn_server_advertise_multiple() {
517517
}
518518

519519
#[test]
520-
#[cfg(ossl110)]
520+
#[cfg(any(ossl110, boringssl))]
521521
fn test_alpn_server_select_none_fatal() {
522522
let mut server = Server::builder();
523523
server.ctx().set_alpn_select_callback(|_, client| {
@@ -533,7 +533,7 @@ fn test_alpn_server_select_none_fatal() {
533533
}
534534

535535
#[test]
536-
#[cfg(any(ossl102, libressl261))]
536+
#[cfg(any(ossl102, libressl261, boringssl))]
537537
fn test_alpn_server_select_none() {
538538
static CALLED_BACK: AtomicBool = AtomicBool::new(false);
539539

0 commit comments

Comments
 (0)