1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 20:17:45 +00:00

Merge pull request #7598 from sylvestre/uutests2

Move our tests infra into a dedicated crate
This commit is contained in:
Dorian Péron 2025-03-28 22:32:49 +01:00 committed by GitHub
commit 61b7f4b54b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
113 changed files with 1337 additions and 935 deletions

View file

@ -365,6 +365,7 @@ uucore = { version = "0.0.30", package = "uucore", path = "src/uucore" }
uucore_procs = { version = "0.0.30", package = "uucore_procs", path = "src/uucore_procs" }
uu_ls = { version = "0.0.30", path = "src/uu/ls" }
uu_base32 = { version = "0.0.30", path = "src/uu/base32" }
uutests = { version = "0.0.30", package = "uutests", path = "tests/uutests/" }
[dependencies]
clap = { workspace = true }
@ -504,6 +505,7 @@ sha1 = { workspace = true, features = ["std"] }
tempfile = { workspace = true }
time = { workspace = true, features = ["local-offset"] }
unindent = "0.2.3"
uutests = { workspace = true }
uucore = { workspace = true, features = [
"mode",
"entries",
@ -514,6 +516,7 @@ uucore = { workspace = true, features = [
walkdir = { workspace = true }
hex-literal = "1.0.0"
rstest = { workspace = true }
ctor = "0.4.1"
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dev-dependencies]
procfs = { version = "0.17", default-features = false }