1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-01 05:27:45 +00:00

tests: add the ability to set resource limits

This commit is contained in:
Michael Debertol 2021-06-02 18:06:56 +02:00
parent dfaaa8c787
commit e5c4681e04
4 changed files with 44 additions and 0 deletions

11
Cargo.lock generated
View file

@ -233,6 +233,7 @@ dependencies = [
"pretty_assertions",
"rand 0.7.3",
"regex",
"rlimit",
"sha1",
"tempfile",
"textwrap",
@ -1410,6 +1411,16 @@ version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9c17925a9027d298a4603d286befe3f9dc0e8ed02523141914eb628798d6e5b"
[[package]]
name = "rlimit"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49b02d62c38353a6fce45c25ca19783e25dd5f495ca681c674a4ee15aa4c1536"
dependencies = [
"cfg-if 0.1.10",
"libc",
]
[[package]]
name = "rust-ini"
version = "0.13.0"