From a1b120812709a5ef88b55871dddcc928279dfa99 Mon Sep 17 00:00:00 2001 From: Alice Ryhl Date: Mon, 13 Jan 2025 16:28:28 +0100 Subject: [PATCH] Disable test_bytes_vec_alloc test on miri (#755) --- tests/test_bytes_vec_alloc.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_bytes_vec_alloc.rs b/tests/test_bytes_vec_alloc.rs index 48fea1e..9c76017 100644 --- a/tests/test_bytes_vec_alloc.rs +++ b/tests/test_bytes_vec_alloc.rs @@ -1,3 +1,4 @@ +#![cfg(not(miri))] use std::alloc::{GlobalAlloc, Layout, System}; use std::ptr::null_mut; use std::sync::atomic::{AtomicPtr, AtomicUsize, Ordering};