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

Fuzz the expr command

This commit is contained in:
Sylvestre Ledru 2023-03-20 20:55:45 +01:00
parent bd0fb817a7
commit ec7ced2518
4 changed files with 228 additions and 0 deletions

View file

@ -15,6 +15,7 @@ rand = { version = "0.8", features = ["small_rng"] }
uucore = { path = "../src/uucore/" }
uu_date = { path = "../src/uu/date/" }
uu_test = { path = "../src/uu/test/" }
uu_expr = { path = "../src/uu/expr/" }
# Prevent this from interfering with workspaces
@ -27,6 +28,12 @@ path = "fuzz_targets/fuzz_date.rs"
test = false
doc = false
[[bin]]
name = "fuzz_expr"
path = "fuzz_targets/fuzz_expr.rs"
test = false
doc = false
[[bin]]
name = "fuzz_test"
path = "fuzz_targets/fuzz_test.rs"