From 390de6ca7f879d6acc84613ff13a0120094f29b7 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 5 Dec 2022 15:57:49 -0500 Subject: [PATCH] chore(body): disable miri for a flaky test (#3073) --- src/body/incoming.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/body/incoming.rs b/src/body/incoming.rs index 863d5d3cb8..bf953d4c69 100644 --- a/src/body/incoming.rs +++ b/src/body/incoming.rs @@ -489,6 +489,7 @@ mod tests { } #[test] + #[cfg(not(miri))] // TODO issue #3015 fn channel_wanter() { let (mut tx, mut rx) = Incoming::new_channel(DecodedLength::CHUNKED, /*wanter = */ true); @@ -511,6 +512,7 @@ mod tests { } #[test] + #[cfg(not(miri))] // TODO issue #3015 fn channel_notices_closure() { let (mut tx, rx) = Incoming::new_channel(DecodedLength::CHUNKED, /*wanter = */ true);