test(fuzz): Use 8 restarts at each size instead of 13

This commit is contained in:
Chris Hennick 2024-06-29 14:12:04 -07:00
parent 90c419ab19
commit 2852cc83ba
No known key found for this signature in database
GPG key ID: DA47AABA4961C509

View file

@ -2,7 +2,7 @@
set -euxo pipefail
ncpus=$(nproc || getconf NPROCESSORS_ONLN)
ncpus=$(( ncpus / ( 1 + $(cat /sys/devices/system/cpu/smt/active))))
NORMAL_RESTARTS=10
NORMAL_RESTARTS=5
rm -rf "fuzz/corpus/fuzz_$1_pre_fresh_blood" || true
mkdir "fuzz/corpus/fuzz_$1_pre_fresh_blood"
find "fuzz/corpus/fuzz_$1" -type f -exec mv '{}' "fuzz/corpus/fuzz_$1_pre_fresh_blood" ';' || true