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

fuzzing: add a new fuzzer for cksum

This commit is contained in:
Sylvestre Ledru 2024-07-18 23:43:24 +02:00
parent 6f43aa3739
commit 04f130ac08
4 changed files with 439 additions and 27 deletions

View file

@ -27,6 +27,7 @@ uu_cut = { path = "../src/uu/cut/" }
uu_split = { path = "../src/uu/split/" }
uu_tr = { path = "../src/uu/tr/" }
uu_env = { path = "../src/uu/env/" }
uu_cksum = { path = "../src/uu/cksum/" }
# Prevent this from interfering with workspaces
[workspace]
@ -127,3 +128,9 @@ name = "fuzz_env"
path = "fuzz_targets/fuzz_env.rs"
test = false
doc = false
[[bin]]
name = "fuzz_cksum"
path = "fuzz_targets/fuzz_cksum.rs"
test = false
doc = false