Skip to content

Commit

Permalink
Merge pull request grpc#6179 from ctiller/fuzzing-hell
Browse files Browse the repository at this point in the history
Fix fuzzing sanity
  • Loading branch information
nicolasnoble committed Apr 14, 2016
2 parents f603c3a + 69f1f43 commit c7d0638
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion tools/fuzzer/runners/client_fuzzer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ flags="-max_total_time=$runtime -artifact_prefix=fuzzer_output/ -max_len=2048"

if [ "$jobs" != "1" ]
then
flags="-jobs=$jobs -workers=$jobs"
flags="-jobs=$jobs -workers=$jobs $flags"
fi

if [ "$config" == "asan-trace-cmp" ]
Expand Down
2 changes: 1 addition & 1 deletion tools/fuzzer/runners/hpack_parser_fuzzer_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ flags="-max_total_time=$runtime -artifact_prefix=fuzzer_output/ -max_len=512"

if [ "$jobs" != "1" ]
then
flags="-jobs=$jobs -workers=$jobs"
flags="-jobs=$jobs -workers=$jobs $flags"
fi

if [ "$config" == "asan-trace-cmp" ]
Expand Down
2 changes: 1 addition & 1 deletion tools/fuzzer/runners/http_fuzzer_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ flags="-max_total_time=$runtime -artifact_prefix=fuzzer_output/ -max_len=2048"

if [ "$jobs" != "1" ]
then
flags="-jobs=$jobs -workers=$jobs"
flags="-jobs=$jobs -workers=$jobs $flags"
fi

if [ "$config" == "asan-trace-cmp" ]
Expand Down
2 changes: 1 addition & 1 deletion tools/fuzzer/runners/json_fuzzer_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ flags="-max_total_time=$runtime -artifact_prefix=fuzzer_output/ -max_len=512"

if [ "$jobs" != "1" ]
then
flags="-jobs=$jobs -workers=$jobs"
flags="-jobs=$jobs -workers=$jobs $flags"
fi

if [ "$config" == "asan-trace-cmp" ]
Expand Down
2 changes: 1 addition & 1 deletion tools/fuzzer/runners/nanopb_fuzzer_response_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ flags="-max_total_time=$runtime -artifact_prefix=fuzzer_output/ -max_len=128"

if [ "$jobs" != "1" ]
then
flags="-jobs=$jobs -workers=$jobs"
flags="-jobs=$jobs -workers=$jobs $flags"
fi

if [ "$config" == "asan-trace-cmp" ]
Expand Down
2 changes: 1 addition & 1 deletion tools/fuzzer/runners/nanopb_fuzzer_serverlist_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ flags="-max_total_time=$runtime -artifact_prefix=fuzzer_output/ -max_len=128"

if [ "$jobs" != "1" ]
then
flags="-jobs=$jobs -workers=$jobs"
flags="-jobs=$jobs -workers=$jobs $flags"
fi

if [ "$config" == "asan-trace-cmp" ]
Expand Down
2 changes: 1 addition & 1 deletion tools/fuzzer/runners/server_fuzzer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ flags="-max_total_time=$runtime -artifact_prefix=fuzzer_output/ -max_len=2048"

if [ "$jobs" != "1" ]
then
flags="-jobs=$jobs -workers=$jobs"
flags="-jobs=$jobs -workers=$jobs $flags"
fi

if [ "$config" == "asan-trace-cmp" ]
Expand Down
2 changes: 1 addition & 1 deletion tools/fuzzer/runners/uri_fuzzer_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ flags="-max_total_time=$runtime -artifact_prefix=fuzzer_output/ -max_len=128"

if [ "$jobs" != "1" ]
then
flags="-jobs=$jobs -workers=$jobs"
flags="-jobs=$jobs -workers=$jobs $flags"
fi

if [ "$config" == "asan-trace-cmp" ]
Expand Down

0 comments on commit c7d0638

Please sign in to comment.