From 585ee6169e8703720c2b2ae47adb895df4ac080e Mon Sep 17 00:00:00 2001 From: "zed-zippy[bot]" <234243425+zed-zippy[bot]@users.noreply.github.com> Date: Mon, 24 Nov 2025 16:09:38 +0000 Subject: [PATCH] Disable fsevents tests (#43218) (cherry-pick to stable) (#43400) Cherry-pick of #43218 to stable ---- They're flakier than phyllo dough, and not nearly as delicious Release Notes: - N/A Co-authored-by: Conrad Irwin --- crates/fsevent/src/fsevent.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/crates/fsevent/src/fsevent.rs b/crates/fsevent/src/fsevent.rs index e4060f3ae06a8d9412baf1cd75a9503c1b6d359b..363052b0ed7a27683ea3676825dbecba7613e150 100644 --- a/crates/fsevent/src/fsevent.rs +++ b/crates/fsevent/src/fsevent.rs @@ -372,7 +372,9 @@ unsafe extern "C" { pub fn FSEventsGetCurrentEventId() -> u64; } -#[cfg(test)] +// These tests are disabled by default because they seem to be unresolvably flaky. +// Feel free to bring them back to help test this code +#[cfg(false)] mod tests { use super::*; use std::{fs, sync::mpsc, thread, time::Duration};