mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 20:17:45 +00:00
Add new fuzzers: cut, sort, split and wc (#5760)
* fuzz: use thread to bypass the limitation of output Closes: #5724 many thanks to @samueltardieu * fuzz: enable seq as the stalled issue is fixed * fuzz: add 4 more fuzzers * fuzz: enable the 4 new fuzzers in the CI * remove old import Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com> * remove comment Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com> * remove comment Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com> * add more flags Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com> * add space Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com> * add a comment about sort local Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com> * wrong copy/paste Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com> * fuzz: import "std::env" --------- Co-authored-by: Daniel Hofstetter <daniel.hofstetter@42dh.com>
This commit is contained in:
parent
b74953ab0e
commit
d07a2f0d86
6 changed files with 409 additions and 0 deletions
|
@ -20,6 +20,10 @@ uu_expr = { path = "../src/uu/expr/" }
|
|||
uu_printf = { path = "../src/uu/printf/" }
|
||||
uu_echo = { path = "../src/uu/echo/" }
|
||||
uu_seq = { path = "../src/uu/seq/" }
|
||||
uu_sort = { path = "../src/uu/sort/" }
|
||||
uu_wc = { path = "../src/uu/wc/" }
|
||||
uu_cut = { path = "../src/uu/cut/" }
|
||||
uu_split = { path = "../src/uu/split/" }
|
||||
|
||||
# Prevent this from interfering with workspaces
|
||||
[workspace]
|
||||
|
@ -49,6 +53,30 @@ path = "fuzz_targets/fuzz_seq.rs"
|
|||
test = false
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_sort"
|
||||
path = "fuzz_targets/fuzz_sort.rs"
|
||||
test = false
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_split"
|
||||
path = "fuzz_targets/fuzz_split.rs"
|
||||
test = false
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_cut"
|
||||
path = "fuzz_targets/fuzz_cut.rs"
|
||||
test = false
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_wc"
|
||||
path = "fuzz_targets/fuzz_wc.rs"
|
||||
test = false
|
||||
doc = false
|
||||
|
||||
[[bin]]
|
||||
name = "fuzz_expr"
|
||||
path = "fuzz_targets/fuzz_expr.rs"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue