Green Sky
b1fe064484
73d9b845a3 cleanup: Remove old type-ordered event getters. b0840cc02d feat: add ngc events 7df9a51349 refactor: Make event dispatch ordered by receive time. bcb6592af5 test: Add C++ classes wrapping system interfaces. 4cea4f9ca4 fix: Make all the fuzzers work again, and add a test for protodump. c4e209ea1d refactor: Factor out malloc+memcpy into memdup. 87bcc4322d fix: Remove fatal error for non-erroneous case REVERT: 6d634674a9 cleanup: Remove old type-ordered event getters. REVERT: d1d48d1dfc feat: add ngc events REVERT: 994ffecc6b refactor: Make event dispatch ordered by receive time. git-subtree-dir: external/toxcore/c-toxcore git-subtree-split: 73d9b845a310c3f56d2d6d77ed56b93d84256d6e
37 lines
959 B
Bash
Executable File
37 lines
959 B
Bash
Executable File
#!/bin/sh
|
|
|
|
HARNESS_BIN="../_afl_build/bootstrap_fuzz_test"
|
|
COV_BIN="../_cov_build/bootstrap_fuzz_test"
|
|
# move to repo root
|
|
cd ../
|
|
|
|
cd _afl_out/
|
|
|
|
# Perform corpus minimization
|
|
mkdir -p corpus-cmin
|
|
rm corpus-cmin/*
|
|
|
|
afl-cmin -i fuzz0/queue/ -o corpus-cmin/ -- "$HARNESS_BIN"
|
|
|
|
# Minimize each testcase
|
|
mkdir -p corpus-tmin
|
|
rm corpus-tmin/*
|
|
|
|
# afl-tmin is VERY slow
|
|
# massive parallel bash piping for the rescue
|
|
find corpus-cmin/ -maxdepth 1 -type f |
|
|
parallel --bar --joblog ./parallel.log afl-tmin -i ./corpus-cmin/{/} -o ./corpus-tmin/{/} -- "$HARNESS_BIN"
|
|
|
|
# in case the tmin-process was aborted, just copy non-minimized files
|
|
cp -n ./corpus-cmin/* ./corpus-tmin
|
|
|
|
# hack to let afl-cov run code coverage on our minimal corpus
|
|
|
|
rm -R corpus-cov
|
|
mkdir -p corpus-cov/queue
|
|
|
|
cp corpus-tmin/* corpus-cov/queue
|
|
|
|
# Run code coverage only on minized corpus to save time
|
|
afl-cov --cover-corpus -d ./corpus-cov --overwrite --coverage-cmd "$COV_BIN @@" --code-dir ../
|