aboutsummaryrefslogtreecommitdiff
path: root/contrib/fuzz_testing/fuzz.sh
blob: 35b74f7e4068c571ea1bca3f63ce904f2e3f1685 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh

AFLFUZZ=$(which afl-fuzz)
if ! test -x "$AFLFUZZ"
then
  echo "afl-fuzz not found - install american-fuzzy-lop"
  exit 1
fi

type="$1"
if test -z "$type"
then
  echo "usage: $0 block|transaction|signature|cold-outputs|cold-transaction"
  exit 1
fi
case "$type" in
  block|transaction|signature|cold-outputs|cold-transaction) ;;
  *) echo "usage: $0 block|transaction|signature|cold-outputs|cold-transaction"; exit 1 ;;
esac

afl-fuzz -i tests/data/fuzz/$type -m 150 -t 250 -o fuzz-out/$type build/fuzz/tests/fuzz/${type}_fuzz_tests