Skip to content

Commit

Permalink
Merge pull request grpc#6003 from ctiller/uhoh
Browse files Browse the repository at this point in the history
Trim number of CPUs
  • Loading branch information
ctiller committed Mar 29, 2016
2 parents 6939e41 + 67af237 commit 508e89f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion templates/tools/fuzzer/runners.template
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ template: |
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

flags="-max_total_time=3600 -jobs=20 -workers=20"
flags="-max_total_time=3600 -jobs=3 -workers=3"
if [ "$config" == "asan-trace-cmp" ]
then
flags="-use_traces=1 $flags"
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 @@ -29,7 +29,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

flags="-max_total_time=3600 -jobs=20 -workers=20"
flags="-max_total_time=3600 -jobs=3 -workers=3"
if [ "$config" == "asan-trace-cmp" ]
then
flags="-use_traces=1 $flags"
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 @@ -29,7 +29,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

flags="-max_total_time=3600 -jobs=20 -workers=20"
flags="-max_total_time=3600 -jobs=3 -workers=3"
if [ "$config" == "asan-trace-cmp" ]
then
flags="-use_traces=1 $flags"
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 @@ -29,7 +29,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

flags="-max_total_time=3600 -jobs=20 -workers=20"
flags="-max_total_time=3600 -jobs=3 -workers=3"
if [ "$config" == "asan-trace-cmp" ]
then
flags="-use_traces=1 $flags"
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 @@ -29,7 +29,7 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

flags="-max_total_time=3600 -jobs=20 -workers=20"
flags="-max_total_time=3600 -jobs=3 -workers=3"
if [ "$config" == "asan-trace-cmp" ]
then
flags="-use_traces=1 $flags"
Expand Down

0 comments on commit 508e89f

Please sign in to comment.