Ignore SRTP tests on libressl 2.9.1

SRTP is broken in that release!
This commit is contained in:
Steven Fackler 2019-05-08 18:19:42 -07:00
parent 995f9a9533
commit 801a236413
1 changed files with 2 additions and 0 deletions

View File

@ -306,6 +306,7 @@ fn state() {
/// lists of supported protocols have an overlap -- with only ONE protocol
/// being valid for both.
#[test]
#[cfg_attr(libressl291, ignore)]
fn test_connect_with_srtp_ctx() {
let listener = TcpListener::bind("127.0.0.1:0").unwrap();
let addr = listener.local_addr().unwrap();
@ -362,6 +363,7 @@ fn test_connect_with_srtp_ctx() {
/// lists of supported protocols have an overlap -- with only ONE protocol
/// being valid for both.
#[test]
#[cfg_attr(libressl291, ignore)]
fn test_connect_with_srtp_ssl() {
let listener = TcpListener::bind("127.0.0.1:0").unwrap();
let addr = listener.local_addr().unwrap();