1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-03 14:37:45 +00:00

Merge pull request #3927 from niyaznigmatullin/fix_timeout_test_tmp_files_deleted_on_sigint

test_sort: Fix timeout issue `test_tmp_files_deleted_on_sigint`
This commit is contained in:
Sylvestre Ledru 2022-10-22 10:24:30 +02:00 committed by GitHub
commit 1d9ec1ed94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 2 deletions

10
Cargo.lock generated
View file

@ -367,6 +367,7 @@ dependencies = [
"pretty_assertions",
"procfs",
"rand",
"rand_pcg",
"regex",
"rlimit",
"selinux",
@ -1664,6 +1665,15 @@ dependencies = [
"getrandom",
]
[[package]]
name = "rand_pcg"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
dependencies = [
"rand_core",
]
[[package]]
name = "rayon"
version = "1.5.3"