Skip to content

Commit

Permalink
Reduce fuzzer iterations in Travis
Browse files Browse the repository at this point in the history
Currenty the fuzzer times out the fuzzer build.
  • Loading branch information
stevenroose committed Sep 3, 2019
1 parent 50dad2d commit 88b5492
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fuzz/travis-fuzz.sh
Expand Up @@ -7,7 +7,7 @@ for TARGET in fuzz_targets/*; do
if [ -d hfuzz_input/$FILE ]; then
HFUZZ_INPUT_ARGS="-f hfuzz_input/$FILE/input"
fi
HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" HFUZZ_RUN_ARGS="-N1000000 --exit_upon_crash -v $HFUZZ_INPUT_ARGS" cargo hfuzz run $FILE
HFUZZ_BUILD_ARGS="--features honggfuzz_fuzz" HFUZZ_RUN_ARGS="-N100000 --exit_upon_crash -v $HFUZZ_INPUT_ARGS" cargo hfuzz run $FILE

if [ -f hfuzz_workspace/$FILE/HONGGFUZZ.REPORT.TXT ]; then
cat hfuzz_workspace/$FILE/HONGGFUZZ.REPORT.TXT
Expand Down

0 comments on commit 88b5492

Please sign in to comment.