Skip to content

Commit

Permalink
Disable profiling tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
roblabla committed Aug 5, 2024
1 parent 098636c commit 4ec1604
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions jemalloc-ctl/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
_ => (),
}

Expand Down

0 comments on commit 4ec1604

Please sign in to comment.