mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
e04b890817
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 ../
|