From 4d7c03047641a1ce6eea4f7aeab7abb0a596b335 Mon Sep 17 00:00:00 2001 From: Prabhpreet Dua <615318+prabhpreet@users.noreply.github.com> Date: Tue, 5 Dec 2023 06:15:19 +0530 Subject: [PATCH] Ignore existing tests --- rosenpass/src/protocol.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/rosenpass/src/protocol.rs b/rosenpass/src/protocol.rs index 400c6110..c461f14d 100644 --- a/rosenpass/src/protocol.rs +++ b/rosenpass/src/protocol.rs @@ -2041,7 +2041,7 @@ impl CryptoServer { #[cfg(test)] mod test { - use serial_test::{parallel, serial}; + use serial_test::serial; use std::{net::SocketAddrV4, thread::sleep, time::Duration}; use super::*; @@ -2138,6 +2138,7 @@ mod test { Ok((a, b)) } + #[ignore] #[test] #[serial] fn cookie_reply_mechanism_responder_under_load() { @@ -2219,6 +2220,7 @@ mod test { }); } + #[ignore] #[test] #[serial] fn cookie_reply_mechanism_initiator_bails_on_message_under_load() {