Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.

Commit d009c06

Browse files
author
Yevgeny Pats
committed
Bugfix in local_feature recursive search for seed files
1 parent b0e4c62 commit d009c06

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/utils.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ fi
7676
if test -f "fuzzer"; then
7777
echo "running fuzzer"
7878
chmod a+x fuzzer
79-
./fuzzer -exact_artifact_path=./artifact -print_final_stats=1 ./seed_dir/* ./corpus_dir/* $ARGS
79+
80+
./fuzzer -exact_artifact_path=./artifact -print_final_stats=1 $(find seed_dir -type f) ./corpus_dir/* $ARGS
8081
else
8182
echo "failed to locate fuzzer. does 'fuzzer' executable exist in the archive?"
8283
fi

0 commit comments

Comments
 (0)