test(fuzz): Refactor: delete duplicate inputs of size 0..=2
This commit is contained in:
parent
f18c2e3054
commit
1e0f6e77e5
1 changed files with 1 additions and 0 deletions
|
@ -3,6 +3,7 @@ set -euxo pipefail
|
|||
mkdir "fuzz/corpus/fuzz_$1_recombination_sources" || true
|
||||
|
||||
# Ensure all 0-byte, 1-byte and 2-byte strings are eligible for recombination
|
||||
find "fuzz/corpus/fuzz_$1_recombination_sources" -type f -size -2c -delete
|
||||
touch fuzz/corpus/fuzz_write_recombination_sources/empty
|
||||
for i in $(seq 0 255); do
|
||||
printf "%02X" "$i" | xargs -n 1 -I '{}' sh -c 'echo {} | xxd -r -p > fuzz/corpus/fuzz_write_recombination_sources/{}'
|
||||
|
|
Loading…
Add table
Reference in a new issue