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

fuzz: start fuzzing env & tr

This commit is contained in:
Sylvestre Ledru 2024-04-01 01:03:14 +02:00
parent 08f324bf40
commit 7919b4e3cd
3 changed files with 184 additions and 0 deletions

View file

@ -25,6 +25,8 @@ uu_sort = { path = "../src/uu/sort/" }
uu_wc = { path = "../src/uu/wc/" }
uu_cut = { path = "../src/uu/cut/" }
uu_split = { path = "../src/uu/split/" }
uu_tr = { path = "../src/uu/tr/" }
uu_env = { path = "../src/uu/env/" }
# Prevent this from interfering with workspaces
[workspace]
@ -107,3 +109,15 @@ name = "fuzz_parse_time"
path = "fuzz_targets/fuzz_parse_time.rs"
test = false
doc = false
[[bin]]
name = "fuzz_tr"
path = "fuzz_targets/fuzz_tr.rs"
test = false
doc = false
[[bin]]
name = "fuzz_env"
path = "fuzz_targets/fuzz_env.rs"
test = false
doc = false