Fix intermittent test crash (#6268)

* Fix intermittent test crash

* fix windows build
This commit is contained in:
JT
2022-08-09 14:06:46 +12:00
committed by GitHub
parent 121b801baa
commit 555d9ee763
3 changed files with 8 additions and 123 deletions

View File

@ -1,4 +1,3 @@
mod foreground;
#[cfg(any(target_os = "android", target_os = "linux"))]
mod linux;
#[cfg(target_os = "macos")]
@ -6,7 +5,6 @@ mod macos;
#[cfg(target_os = "windows")]
mod windows;
pub use self::foreground::{ForegroundChild, ForegroundProcess};
#[cfg(any(target_os = "android", target_os = "linux"))]
pub use self::linux::*;
#[cfg(target_os = "macos")]