test(fuzz): Fix another off-by-one error involving 2-byte exhaustive entries

This commit is contained in:
Chris Hennick 2024-06-25 20:31:50 -07:00
parent cdc5f71f66
commit acb05fc42f
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -3,7 +3,7 @@ set -euxo pipefail
mkdir "fuzz/corpus/fuzz_$1_recombination_sources" || true
# Ensure the 0-byte, 1-byte and 2-byte strings won't gain duplicates during recombination
find "fuzz/corpus/fuzz_$1_recombination_sources" -type f -size -2c -delete
find "fuzz/corpus/fuzz_$1_recombination_sources" -type f -size -3c -delete
for size in "${@:2}"; do
echo "$(date): STARTING ON SIZE $size"