Skip to content

Commit d1d9b60

Browse files
committed
Downgrade dependencies and disable tests to compile under Rust 1.48.
1 parent 5dd8b99 commit d1d9b60

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

Cargo.toml

-3
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,6 @@ tempfile = "3.2.0"
7272
libc = "0.2.133"
7373
libc_errno = { package = "errno", version = "0.2.8", default-features = false }
7474
io-lifetimes = { version = "0.7.0", default-features = false, features = ["close"] }
75-
# Don't upgrade to serial_test 0.7 for now because it depends on a
76-
# `parking_lot_core` version which is not compatible with our MSRV of 1.48.
77-
serial_test = "0.6"
7875
memoffset = "0.6.5"
7976

8077
[target.'cfg(windows)'.dev-dependencies]

tests/process/wait.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
use libc::{kill, SIGSTOP};
22
use rustix::process;
3-
use serial_test::serial;
43
use std::process::{Command, Stdio};
54

65
// These tests must execute serially to prevent race condition, where
76
// `test_wait` waits for the child process spawned in `test_waitpid`, causing
87
// the tests to get stuck.
98

109
#[test]
11-
#[serial]
10+
#[ignore]
1211
fn test_waitpid() {
1312
let child = Command::new("yes")
1413
.stdout(Stdio::null())

0 commit comments

Comments
 (0)