Commit d63542a4 authored by Charlie Li's avatar Charlie Li
Browse files

Re-enable tests ignored in LibreSSL 3.2.1+ for 3.4.0+

parent 72b74045
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -550,7 +550,7 @@ fn read_panic() {
}

#[test]
#[cfg_attr(libressl321, ignore)]
#[cfg_attr(all(libressl321, not(libressl340)), ignore)]
#[should_panic(expected = "blammo")]
fn flush_panic() {
    struct ExplodingStream(TcpStream);
@@ -838,7 +838,7 @@ fn cert_store() {
}

#[test]
#[cfg_attr(libressl321, ignore)]
#[cfg_attr(all(libressl321, not(libressl340)), ignore)]
fn tmp_dh_callback() {
    static CALLED_BACK: AtomicBool = AtomicBool::new(false);

@@ -886,7 +886,7 @@ fn tmp_ecdh_callback() {
}

#[test]
#[cfg_attr(libressl321, ignore)]
#[cfg_attr(all(libressl321, not(libressl340)), ignore)]
fn tmp_dh_callback_ssl() {
    static CALLED_BACK: AtomicBool = AtomicBool::new(false);

@@ -945,7 +945,7 @@ fn idle_session() {
}

#[test]
#[cfg_attr(libressl321, ignore)]
#[cfg_attr(all(libressl321, not(libressl340)), ignore)]
fn active_session() {
    let server = Server::builder().build();

@@ -1001,7 +1001,7 @@ fn status_callbacks() {
}

#[test]
#[cfg_attr(libressl321, ignore)]
#[cfg_attr(all(libressl321, not(libressl340)), ignore)]
fn new_session_callback() {
    static CALLED_BACK: AtomicBool = AtomicBool::new(false);

@@ -1025,7 +1025,7 @@ fn new_session_callback() {
}

#[test]
#[cfg_attr(libressl321, ignore)]
#[cfg_attr(all(libressl321, not(libressl340)), ignore)]
fn new_session_callback_swapped_ctx() {
    static CALLED_BACK: AtomicBool = AtomicBool::new(false);