From 2e2a52b5996a7f341b9cfdd4a61d3e3b06930098 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Mon, 13 Nov 2023 08:58:27 -0500 Subject: [PATCH] ignore fuzz test with miri --- tests/header_map_fuzz.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/header_map_fuzz.rs b/tests/header_map_fuzz.rs index 68a8604f..c3af2e52 100644 --- a/tests/header_map_fuzz.rs +++ b/tests/header_map_fuzz.rs @@ -8,6 +8,7 @@ use rand::{Rng, SeedableRng}; use std::collections::HashMap; +#[cfg(not(miri))] #[test] fn header_map_fuzz() { fn prop(fuzz: Fuzz) -> TestResult {