test(fuzz): Fix another off-by-one error involving 2-byte exhaustive entries
This commit is contained in:
parent
cdc5f71f66
commit
acb05fc42f
1 changed files with 1 additions and 1 deletions
|
@ -3,7 +3,7 @@ set -euxo pipefail
|
||||||
mkdir "fuzz/corpus/fuzz_$1_recombination_sources" || true
|
mkdir "fuzz/corpus/fuzz_$1_recombination_sources" || true
|
||||||
|
|
||||||
# Ensure the 0-byte, 1-byte and 2-byte strings won't gain duplicates during recombination
|
# 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
|
for size in "${@:2}"; do
|
||||||
echo "$(date): STARTING ON SIZE $size"
|
echo "$(date): STARTING ON SIZE $size"
|
||||||
|
|
Loading…
Add table
Reference in a new issue