From 4ec160413525ff9bdf2392fed0a119ad15850c07 Mon Sep 17 00:00:00 2001 From: roblabla Date: Mon, 5 Aug 2024 16:06:55 +0200 Subject: [PATCH] Disable profiling tests on windows --- jemalloc-ctl/src/macros.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jemalloc-ctl/src/macros.rs b/jemalloc-ctl/src/macros.rs index 02ca084b7..ee9955f0c 100644 --- a/jemalloc-ctl/src/macros.rs +++ b/jemalloc-ctl/src/macros.rs @@ -70,6 +70,12 @@ macro_rules! r { "background_thread" | "max_background_threads" if cfg!(any(target_os = "macos", windows)) => return, + "lg_prof_interval" | + "lg_prof_sample" | + "prof_final" | + "prof_leak" | + "prof" + if cfg!(windows) => return, _ => (), }