Add basic fuzzing with afl++

This commit is contained in:
2025-03-30 22:01:53 +02:00
parent df948b18c6
commit 55f6dff543
2 changed files with 15 additions and 5 deletions

View File

@ -3,7 +3,9 @@
set -euo pipefail
# Start with static analysis
scan-build -o reports/ -plist-html --status-bugs make clean all
make clean all
mkdir -p reports/static-analysis
scan-build -o reports/static-analysis/ -plist-html --status-bugs make all
# Run the sanitizer builds and valgrind
make clean sanitize all