[fuzzer] adding ldd printout

This commit is contained in:
Mike Aizatsky 2016-11-18 11:58:32 -08:00 committed by GitHub
parent 14f75890ff
commit a1d663b95e
1 changed files with 1 additions and 0 deletions

View File

@ -29,6 +29,7 @@ N=0
for FUZZER_BINARY in $(find $DIR -executable -type f); do
FUZZER=$(basename $FUZZER_BINARY)
echo "testing $FUZZER"
ldd $FUZZER_BINARY
out=$(tempfile)
just_run $FUZZER -runs=32 | tee $out
N=$[$N+1]