File tree 2 files changed +1
-5
lines changed
2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -72,9 +72,6 @@ tempfile = "3.2.0"
72
72
libc = " 0.2.133"
73
73
libc_errno = { package = " errno" , version = " 0.2.8" , default-features = false }
74
74
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"
78
75
memoffset = " 0.6.5"
79
76
80
77
[target .'cfg(windows)' .dev-dependencies ]
Original file line number Diff line number Diff line change 1
1
use libc:: { kill, SIGSTOP } ;
2
2
use rustix:: process;
3
- use serial_test:: serial;
4
3
use std:: process:: { Command , Stdio } ;
5
4
6
5
// These tests must execute serially to prevent race condition, where
7
6
// `test_wait` waits for the child process spawned in `test_waitpid`, causing
8
7
// the tests to get stuck.
9
8
10
9
#[ test]
11
- #[ serial ]
10
+ #[ ignore ]
12
11
fn test_waitpid ( ) {
13
12
let child = Command :: new ( "yes" )
14
13
. stdout ( Stdio :: null ( ) )
You can’t perform that action at this time.
0 commit comments