From 4ade408d3056847b821597ba0b2cd5c09f682d97 Mon Sep 17 00:00:00 2001 From: Gwilym Inzani Date: Sun, 23 Apr 2023 17:43:30 +0100 Subject: [PATCH] Avoid the really slow test under miri --- agb-hashmap/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/agb-hashmap/src/lib.rs b/agb-hashmap/src/lib.rs index f8260efd..350f2206 100644 --- a/agb-hashmap/src/lib.rs +++ b/agb-hashmap/src/lib.rs @@ -1133,6 +1133,7 @@ mod test { } } + #[cfg(not(miri))] // takes way too long to run under miri #[test] fn extreme_case() { use rand::SeedableRng;