File tree Expand file tree Collapse file tree 4 files changed +3
-196
lines changed Expand file tree Collapse file tree 4 files changed +3
-196
lines changed Original file line number Diff line number Diff line change 97
97
cargo update --package=io-lifetimes --precise 1.0.6
98
98
cd - >/dev/null
99
99
done
100
+ cargo update --package=tempfile --precise=3.6.0
100
101
101
102
- run : cargo check --workspace --release -vv --all-targets
102
103
- run : cargo check --workspace --release -vv --features=all-apis --all-targets
@@ -479,6 +480,7 @@ jobs:
479
480
cargo update --package=io-lifetimes --precise 1.0.6
480
481
cd - >/dev/null
481
482
done
483
+ cargo update --package=tempfile --precise=3.6.0
482
484
483
485
- run : |
484
486
# Run the tests, and check the prebuilt release libraries.
Original file line number Diff line number Diff line change @@ -73,24 +73,12 @@ tempfile = "3.2.0"
73
73
libc = " 0.2.133"
74
74
libc_errno = { package = " errno" , version = " 0.3.0" , default-features = false }
75
75
io-lifetimes = { version = " 1.0.0" , default-features = false , features = [" close" ] }
76
- # Don't upgrade to serial_test 0.7 for now because it depends on a
77
- # `parking_lot_core` version which is not compatible with our MSRV of 1.48.
78
- serial_test = " 0.6"
79
76
memoffset = " 0.7.1"
80
77
flate2 = " 1.0"
81
78
82
- [target .'cfg(all(criterion, not(any(target_os = "emscripten", target_os = "wasi"))))' .dev-dependencies ]
83
- criterion = " 0.4"
84
-
85
79
[target .'cfg(windows)' .dev-dependencies ]
86
80
ctor = " 0.1.21"
87
81
88
- # Add Criterion configuration, as described here:
89
- # <https://bheisler.github.io/criterion.rs/book/getting_started.html#step-1---add-dependency-to-cargotoml>
90
- [[bench ]]
91
- name = " mod"
92
- harness = false
93
-
94
82
[package .metadata .docs .rs ]
95
83
features = [" all-apis" ]
96
84
rustdoc-args = [" --cfg" , " doc_cfg" ]
Load Diff This file was deleted.
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