diff --git a/Cargo.toml b/Cargo.toml index feea81120..0c365e1aa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,9 +72,6 @@ tempfile = "3.2.0" libc = "0.2.133" libc_errno = { package = "errno", version = "0.2.8", default-features = false } io-lifetimes = { version = "0.7.0", default-features = false, features = ["close"] } -# Don't upgrade to serial_test 0.7 for now because it depends on a -# `parking_lot_core` version which is not compatible with our MSRV of 1.48. -serial_test = "0.6" memoffset = "0.6.5" [target.'cfg(windows)'.dev-dependencies] diff --git a/tests/process/wait.rs b/tests/process/wait.rs index a1f25a631..2262eec33 100644 --- a/tests/process/wait.rs +++ b/tests/process/wait.rs @@ -1,6 +1,5 @@ use libc::{kill, SIGSTOP}; use rustix::process; -use serial_test::serial; use std::process::{Command, Stdio}; // These tests must execute serially to prevent race condition, where @@ -8,7 +7,7 @@ use std::process::{Command, Stdio}; // the tests to get stuck. #[test] -#[serial] +#[ignore] fn test_waitpid() { let child = Command::new("yes") .stdout(Stdio::null())