57e326472886e654af93503c88b5611f7a9e2e2a
[rust-lightning] / fuzz / ci-fuzz.sh
1 #!/bin/bash
2 set -e
3
4 pushd src/msg_targets
5 rm msg_*.rs
6 ./gen_target.sh
7 [ "$(git diff)" != "" ] && exit 1
8 popd
9 pushd src/bin
10 rm *_target.rs
11 ./gen_target.sh
12 [ "$(git diff)" != "" ] && exit 1
13 popd
14
15 cargo install --force honggfuzz
16 sed -i 's/lto = true//' Cargo.toml
17 HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo hfuzz build
18 for TARGET in src/bin/*.rs; do
19         FILENAME=$(basename $TARGET)
20         FILE="${FILENAME%.*}"
21         HFUZZ_RUN_ARGS="--exit_upon_crash -v -n2"
22         if [ "$FILE" = "chanmon_consistency_target" ]; then
23                 HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -F 64 -N100000"
24         else
25                 HFUZZ_RUN_ARGS="$HFUZZ_RUN_ARGS -N1000000"
26         fi
27         export HFUZZ_RUN_ARGS
28         HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" cargo hfuzz run $FILE
29         if [ -f hfuzz_workspace/$FILE/HONGGFUZZ.REPORT.TXT ]; then
30                 cat hfuzz_workspace/$FILE/HONGGFUZZ.REPORT.TXT
31                 for CASE in hfuzz_workspace/$FILE/SIG*; do
32                         cat $CASE | xxd -p
33                 done
34                 exit 1
35         fi
36 done