File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -502,7 +502,7 @@ fn test_connect_with_srtp_ssl() {
502
502
/// Tests that when the `SslStream` is created as a server stream, the protocols
503
503
/// are correctly advertised to the client.
504
504
#[ test]
505
- #[ cfg( any( ossl102, libressl261) ) ]
505
+ #[ cfg( any( ossl102, libressl261, boringssl ) ) ]
506
506
fn test_alpn_server_advertise_multiple ( ) {
507
507
let mut server = Server :: builder ( ) ;
508
508
server. ctx ( ) . set_alpn_select_callback ( |_, client| {
@@ -517,7 +517,7 @@ fn test_alpn_server_advertise_multiple() {
517
517
}
518
518
519
519
#[ test]
520
- #[ cfg( ossl110) ]
520
+ #[ cfg( any ( ossl110, boringssl ) ) ]
521
521
fn test_alpn_server_select_none_fatal ( ) {
522
522
let mut server = Server :: builder ( ) ;
523
523
server. ctx ( ) . set_alpn_select_callback ( |_, client| {
@@ -533,7 +533,7 @@ fn test_alpn_server_select_none_fatal() {
533
533
}
534
534
535
535
#[ test]
536
- #[ cfg( any( ossl102, libressl261) ) ]
536
+ #[ cfg( any( ossl102, libressl261, boringssl ) ) ]
537
537
fn test_alpn_server_select_none ( ) {
538
538
static CALLED_BACK : AtomicBool = AtomicBool :: new ( false ) ;
539
539
You can’t perform that action at this time.
0 commit comments