mirror of
https://github.com/TokTok/c-toxcore
synced 2026-04-14 04:25:51 +00:00
This adds scripts and Dockerfiles to run the fuzzing process standalone or with OSS-Fuzz/ClusterFuzzLite integrations.
8 lines
214 B
Bash
Executable File
8 lines
214 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Move to repo root
|
|
cd ../
|
|
|
|
# Run code coverage only on minized corpus to save time
|
|
afl-cov --cover-corpus -d ./_afl_out --overwrite --live --coverage-cmd "_cov_build/bootstrap_fuzzer @@" --code-dir ../
|