diff options
author | Craig Tiller <ctiller@google.com> | 2016-04-14 09:30:32 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-04-14 09:30:32 -0700 |
commit | 0d17ee3acfb7972ffe9ee9334836e1ddd4d0abd1 (patch) | |
tree | a4c2ed86fc7c6647077ee821a78e3d95ec2f38fb /templates/tools/fuzzer | |
parent | 48a3af615b630ef6058a6d3fdcf78bface9b8fcf (diff) |
Fix bug causing all fuzzers to run forever
Diffstat (limited to 'templates/tools/fuzzer')
-rw-r--r-- | templates/tools/fuzzer/runners.template | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/tools/fuzzer/runners.template b/templates/tools/fuzzer/runners.template index 72d0b363f2..4b8d4f3c68 100644 --- a/templates/tools/fuzzer/runners.template +++ b/templates/tools/fuzzer/runners.template @@ -39,7 +39,7 @@ template: | if [ "$jobs" != "1" ] then - flags="-jobs=$jobs -workers=$jobs" + flags="-jobs=$jobs -workers=$jobs $flags" fi if [ "$config" == "asan-trace-cmp" ] |