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 9797 cargo update --package=io-lifetimes --precise 1.0.6
9898 cd - >/dev/null
9999 done
100+ cargo update --package=tempfile --precise=3.6.0
100101
101102 - run : cargo check --workspace --release -vv --all-targets
102103 - run : cargo check --workspace --release -vv --features=all-apis --all-targets
@@ -479,6 +480,7 @@ jobs:
479480 cargo update --package=io-lifetimes --precise 1.0.6
480481 cd - >/dev/null
481482 done
483+ cargo update --package=tempfile --precise=3.6.0
482484
483485 - run : |
484486 # 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"
7373libc = " 0.2.133"
7474libc_errno = { package = " errno" , version = " 0.3.0" , default-features = false }
7575io-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"
7976memoffset = " 0.7.1"
8077flate2 = " 1.0"
8178
82- [target .'cfg(all(criterion, not(any(target_os = "emscripten", target_os = "wasi"))))' .dev-dependencies ]
83- criterion = " 0.4"
84-
8579[target .'cfg(windows)' .dev-dependencies ]
8680ctor = " 0.1.21"
8781
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-
9482[package .metadata .docs .rs ]
9583features = [" all-apis" ]
9684rustdoc-args = [" --cfg" , " doc_cfg" ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11use libc:: { kill, SIGSTOP } ;
22use rustix:: process;
3- use serial_test:: serial;
43use 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 ]
1211fn test_waitpid ( ) {
1312 let child = Command :: new ( "yes" )
1413 . stdout ( Stdio :: null ( ) )
You can’t perform that action at this time.
0 commit comments